Update src/app/blog/page.tsx
This commit is contained in:
@@ -29,11 +29,11 @@ export default function BlogPage() {
|
||||
brandName="My Blog"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Articles", id: "blog" },
|
||||
{ name: "Articles", id: "/blog" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Subscribe", href: "#newsletter" }}
|
||||
button={{ text: "Subscribe", href: "newsletter" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -62,7 +62,7 @@ export default function BlogPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Content", items: [
|
||||
{ label: "Articles", href: "#blog" },
|
||||
{ label: "Articles", href: "/blog" },
|
||||
{ label: "Featured", href: "#featured" },
|
||||
{ label: "Categories", href: "#" },
|
||||
{ label: "Archive", href: "#" }
|
||||
@@ -70,7 +70,7 @@ export default function BlogPage() {
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Newsletter", href: "#newsletter" },
|
||||
{ label: "Newsletter", href: "newsletter" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
{ label: "Email", href: "mailto:hello@myblog.com" }
|
||||
@@ -78,9 +78,9 @@ export default function BlogPage() {
|
||||
},
|
||||
{
|
||||
title: "About", items: [
|
||||
{ label: "About Me", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Collaborate", href: "#contact" },
|
||||
{ label: "About Me", href: "about" },
|
||||
{ label: "Contact", href: "contact" },
|
||||
{ label: "Collaborate", href: "contact" },
|
||||
{ label: "Advertise", href: "#" }
|
||||
]
|
||||
},
|
||||
@@ -98,4 +98,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user