From d00bbe74fbf167a17cc45f7cf03fb7e8ad4b634c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 08:08:20 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 51c552a..af4075b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -28,7 +28,7 @@ export default function AboutPage() { { name: "About", id: "/about" }, { name: "Services", id: "/services" }, { name: "Work", id: "/#portfolio" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/contact" }, ]} brandName="Faithful Story Studio" /> @@ -57,7 +57,7 @@ export default function AboutPage() { }, { items: [ - { label: "Contact", href: "/#contact" }, + { label: "Contact", href: "/contact" }, { label: "FAQ", href: "/#faq" }, { label: "Privacy", href: "#" }, ], -- 2.49.1 From 8639d43add10a63cb67b759b58ed544401e35b2a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 08:08:21 +0000 Subject: [PATCH 2/4] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 72 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..a2f53a7 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,72 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function ContactPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 4cd7f88a8b2415643bfe286fd78118cacb71e499 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 08:08:21 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d1232ef..aa0ded3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,15 +3,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import AboutMetric from '@/components/sections/about/AboutMetric'; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import { Camera, Heart, Video } from "lucide-react"; export default function LandingPage() { @@ -36,7 +30,7 @@ export default function LandingPage() { { name: "About", id: "/about" }, { name: "Services", id: "/services" }, { name: "Work", id: "/#portfolio" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/contact" }, ]} brandName="Faithful Story Studio" /> @@ -84,7 +78,7 @@ export default function LandingPage() { }, { items: [ - { label: "Contact", href: "/#contact" }, + { label: "Contact", href: "/contact" }, { label: "FAQ", href: "/#faq" }, { label: "Privacy", href: "#" }, ], -- 2.49.1 From e5b41dbc1c9e3027816bbf2024bd2d69b5b3abdc Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 08:08:21 +0000 Subject: [PATCH 4/4] Update src/app/services/page.tsx --- src/app/services/page.tsx | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 0168593..8d73ccf 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -5,11 +5,6 @@ import ReactLenis from "lenis/react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -// FeatureCardTwentyOne is not in the allowed registry for services, and FeatureCardOne is the standard registry component. -// The error log refers to FeatureCardTwentyOneProps missing 'videoSrc'. -// Since this component is not in the registry provided, I will replace it with a compliant implementation or inline logic if necessary. -// For now, I must adhere to the registry. I will remove the broken component. - export default function ServicesPage() { return ( @@ -51,7 +46,7 @@ export default function ServicesPage() { }, { items: [ - { label: "Contact", href: "/#contact" }, + { label: "Contact", href: "/contact" }, { label: "FAQ", href: "/#faq" }, { label: "Privacy", href: "#" }, ], -- 2.49.1