Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
sc
Browse files Browse the repository at this point in the history
  • Loading branch information
sametcn99 committed Mar 4, 2024
1 parent 17e0f67 commit 67be36e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/home/Blogs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ export default function RenderPosts() {

// Render each post as a 'PostCard' component separated by a 'Divider'
return (
<section className="flex w-full flex-col gap-4">
<section className="flex w-full flex-col gap-4" id="blog-posts">
<Heading as="h2" size="4" className="mb-4">
Read more about GPV
</Heading>
{posts.map((post: BlogPost, index: number) => (
<React.Fragment key={index}>
<PostCard post={post} key={`${index}-post-card`} />
<Separator className="w-full" size="4" key={`${index}-separator`} />
<Separator size="4" key={`${index}-separator`} />
</React.Fragment>
))}
</section>
Expand Down
2 changes: 1 addition & 1 deletion components/home/Features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import FeatureBox from "./FeatureBox";

export default function Features() {
return (
<Section className="flex flex-col items-center gap-4">
<Section className="flex flex-col items-center gap-4" id="features">
<Heading size="8" className="text-3xl font-bold">
Features
</Heading>
Expand Down
5 changes: 4 additions & 1 deletion components/home/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import ChromeStore from "./ChromeStore";

export default function Hero() {
return (
<Section className="flex flex-col items-center justify-center gap-4 text-center ">
<Section
className="flex flex-col items-center justify-center gap-4 text-center"
id="hero"
>
<Heading
size="9"
className="bg-gradient-to-r from-blue-600 via-green-600 to-purple-600 bg-clip-text text-transparent"
Expand Down

1 comment on commit 67be36e

@vercel
Copy link

@vercel vercel bot commented on 67be36e Mar 4, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.