diff --git a/src/app/page.tsx b/src/app/page.tsx
index d9acfa4..f29b608 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -8,6 +8,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import FaqDouble from '@/components/sections/faq/FaqDouble';
+import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function LandingPage() {
@@ -28,13 +29,13 @@ export default function LandingPage() {
@@ -44,8 +45,8 @@ export default function LandingPage() {
logoText="MY BLOG"
description="Exploring ideas, sharing stories, and discovering insights about life, creativity, and growth"
buttons={[
- { text: "Start Reading", href: "#blog" },
- { text: "Subscribe", href: "#newsletter" }
+ { text: "Start Reading", href: "/blog" },
+ { text: "Subscribe", href: "newsletter" }
]}
slides={[
{
@@ -100,6 +101,32 @@ export default function LandingPage() {
/>
+
+
+
+
@@ -205,7 +232,7 @@ export default function LandingPage() {
columns={[
{
title: "Content", items: [
- { label: "Articles", href: "#blog" },
+ { label: "Articles", href: "/blog" },
{ label: "Featured", href: "#featured" },
{ label: "Categories", href: "#" },
{ label: "Archive", href: "#" }
@@ -213,7 +240,7 @@ export default function LandingPage() {
},
{
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" }
@@ -221,9 +248,9 @@ export default function LandingPage() {
},
{
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: "#" }
]
},
@@ -240,4 +267,4 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}