diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index eaf9208..1e9bfb4 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,247 +2,99 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import AboutMetric from '@/components/sections/about/AboutMetric'; -import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import TeamCardOne from '@/components/sections/team/TeamCardOne'; -import { Car, Smile, Star } from "lucide-react"; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Star, Facebook, Instagram, X } from 'lucide-react'; + +export default function AboutPage() { + const navItems = [ + { + name: "Home", id: "/" + }, + { + name: "Inventory", id: "/inventory" + }, + { + name: "Financing", id: "/financing" + }, + { + name: "Reviews", id: "/reviews" + }, + { + name: "About", id: "/about" + }, + { + name: "Contact", id: "/contact" + }, + { + name: "Gallery", id: "/gallery" + } + ]; -export default function LandingPage() { return ( - + -
-
+
+ +
-
- -
- -
- -
- - +
); diff --git a/src/app/page.tsx b/src/app/page.tsx index 4d5dda2..6100b82 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -41,6 +41,8 @@ export default function LandingPage() { name: "About", id: "/about"}, { name: "Contact", id: "/contact"}, + { + name: "Gallery", id: "/gallery"} ]} button={{ text: "Call Us", href: "tel:+19178652128"}}