Skip to content

Commit 282edf7

Browse files
committed
[PRO-73] Portal: Update hero images (#8381)
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on making stylistic updates to the `Hero` component in the `page.tsx` file, including adjustments to padding and text size in the layout. ### Detailed summary - Changed padding in the `section` from `py-14` to `pt-14 pb-6`. - Modified paragraph class from `text-lg` to `text-base` for smaller text size on smaller screens while keeping `lg:text-lg`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Style** * Adjusted Hero section vertical spacing for improved layout balance. * Enhanced introductory text with responsive font sizing and refined spacing across different screen sizes. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent a87e91b commit 282edf7

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
143 KB
Loading
141 KB
Loading

apps/portal/src/app/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ export default function Page() {
4141

4242
function Hero() {
4343
return (
44-
<section className="grid gap-4 py-14 lg:grid-cols-[1fr_420px] lg:py-0">
44+
<section className="grid gap-4 pt-14 pb-6 lg:grid-cols-[1fr_420px] lg:py-0">
4545
{/* Left */}
4646
<div className="flex flex-col justify-center">
4747
<div>
4848
<h1 className="mb-3 font-bold text-4xl tracking-tighter lg:text-6xl">
4949
thirdweb Documentation
5050
</h1>
51-
<p className="mb-8 max-w-lg text-lg text-muted-foreground leading-normal text-pretty">
51+
<p className="mb-6 max-w-lg text-base lg:text-lg text-muted-foreground leading-normal text-pretty">
5252
Platform for building the next generation of internet products
5353
</p>
5454
<div className="flex gap-3">

0 commit comments

Comments
 (0)