diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 9925e3b..f92f013 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -26,6 +26,7 @@ export default function ContactPage() { navItems={[ { name: "About", id: "/#about" }, { name: "Services", id: "/#services" }, + { name: "Customers", id: "/customers" }, { name: "Trust", id: "/#trust" }, { name: "Contact", id: "/contact" }, ]} diff --git a/src/app/customers/page.tsx b/src/app/customers/page.tsx new file mode 100644 index 0000000..44d2893 --- /dev/null +++ b/src/app/customers/page.tsx @@ -0,0 +1,65 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; + +export default function CustomersPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index fef9330..cc8b672 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,9 +2,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; @@ -12,6 +9,8 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TextAbout from '@/components/sections/about/TextAbout'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; export default function LandingPage() { return ( @@ -33,6 +32,7 @@ export default function LandingPage() { navItems={[ { name: "About", id: "#about" }, { name: "Services", id: "#services" }, + { name: "Customers", id: "/customers" }, { name: "Trust", id: "#trust" }, { name: "Contact", id: "/contact" }, ]}