diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 6cb72a4..f3b9ff3 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,7 +1,7 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; @@ -14,8 +14,7 @@ export default function ContactPage() { { name: "Home", id: "/" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, - { name: "Portfolio", id: "portfolio" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]; const contactButton = { @@ -36,9 +35,8 @@ export default function ContactPage() { headingFontWeight="bold" >
@@ -233,4 +231,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 9f2d841..4b02a3f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,34 +1,22 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; -import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; +import FeatureCardTen from "@/components/sections/feature/FeatureCardTen"; import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; -import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; -import FaqSplitText from "@/components/sections/faq/FaqSplitText"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import Link from "next/link"; -import { - Hammer, - Wrench, - Droplet, - Paintbrush, - Zap, - MonitorPlay, - Armchair, - Layers, - Clock, - Users, - CheckCircle, - TrendingUp, - Star, - Facebook, - Instagram, - Phone, -} from "lucide-react"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Sparkles, CheckCircle, TrendingUp, Users } from "lucide-react"; + +export default function Home() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Contact", id: "/contact" }, + ]; -export default function HomePage() { return (