Skip to content

Commit

Permalink
gfs
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajrekwar committed Sep 4, 2024
1 parent 5e6a2f0 commit b390564
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/blog/first-post/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const post = posts.find(p => p.slug === 'first-post');

export default function FirstPostPage() {
return (
<body className='bg-primary'>

<main className="prose min-h-screen max-w-5xl bg-primary m-auto text-four mx-auto py-2">
<section className='mb-44'>
<p className='p-[4px] font-semibold flex justify-center rounded-full items-center my-10 max-w-fit m-auto text-four border-2 border-four bg-primary px-2 uppercase text-sm'>think it</p>
Expand Down Expand Up @@ -107,6 +107,6 @@ export default function FirstPostPage() {
</div>
</section>
</main>
</body>

);
}
6 changes: 4 additions & 2 deletions app/blog/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<>

<body className="bg-primary">
<header className=" border-b border-seven h-28 bg-primary bg-custom-radial-lg justify-between items-center text-five ">
<div className="flex bg-transparent basis-1/2 justify-between items-start max-w-7xl m-auto">
<div className={caveat.className}>
Expand All @@ -39,6 +40,7 @@ export default function RootLayout({
</div>
</header>
{children}
</>
</body>

);
}
4 changes: 2 additions & 2 deletions app/blog/third-post/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const post = posts.find(p => p.slug === 'third-post');

export default function ThirdPostPage() {
return (
<body className='bg-primary'>

<main className="prose min-h-screen max-w-5xl bg-primary m-auto text-four mx-auto py-2">
<section className='mb-44'>
<p className='p-[4px] font-semibold flex justify-center rounded-full items-center my-10 max-w-fit m-auto text-four border-2 border-four bg-primary px-2 uppercase text-sm'>think it</p>
Expand Down Expand Up @@ -106,6 +106,6 @@ export default function ThirdPostPage() {
</div>
</section>
</main>
</body>

);
}

0 comments on commit b390564

Please sign in to comment.