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: "#" }, ], 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 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: "#" }, ], 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: "#" }, ],