diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx index fe7b1ce..0d2364a 100644 --- a/src/app/about-us/page.tsx +++ b/src/app/about-us/page.tsx @@ -35,6 +35,7 @@ export default function AboutUsPage() { brandName="My Website" logoSrc="/placeholder-logo.svg" logoAlt="Company Logo" + button={{ text: "Learn More", href: "#" }} />
@@ -44,7 +45,6 @@ export default function AboutUsPage() { useInvertedBackground={false} imageSrc="https://images.unsplash.com/photo-1549692520-acc66692997b?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w0NTYwNXwwfDF8YWxsfDV8fHx8fHwyfHwxNzA4NjA4NzU4fA&ixlib=rb-4.0.3&q=80&w=400" imageAlt="About Us Image" - mediaAnimation="blur-reveal" />
diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index f09dd46..88af41e 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -34,6 +34,7 @@ export default function CartPage() { brandName="My Website" logoSrc="/placeholder-logo.svg" logoAlt="Company Logo" + button={{ text: "Learn More", href: "#" }} />
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 93670fd..2bfbb64 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,10 +1,10 @@ 'use client'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ContactForm from '@/components/form/ContactForm'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import ContactText from '@/components/sections/contact/ContactText'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import Link from 'next/link'; export default function ContactPage() { @@ -32,11 +32,12 @@ export default function ContactPage() { headingFontWeight="normal" >
@@ -44,10 +45,12 @@ export default function ContactPage() { title="Get in touch" description="Fill out the form below to contact us." onSubmit={(data) => console.log(data)} + tag="Contact" + useInvertedBackground={false} />
-
-