diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ddfa819..a5ff957 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,16 +2,17 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import SplitAbout from "@/components/sections/about/SplitAbout"; -import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; - -const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" } -]; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import { ChefHat, Sparkles, Award } from "lucide-react"; export default function AboutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + return ( - - - - - - - - - - - + + ); diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4ec7d6e..11481d0 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,11 +3,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; export default function ContactPage() { const navItems = [ { name: "Home", id: "/" }, + { name: "About", id: "/about" }, { name: "Contact", id: "/contact" } ]; @@ -26,12 +27,15 @@ export default function ContactPage() { > - diff --git a/src/app/page.tsx b/src/app/page.tsx index 474eaac..da20d10 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,6 +7,7 @@ import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/Nav export default function LandingPage() { const navItems = [ { name: "Home", id: "/" }, + { name: "About", id: "/about" }, { name: "Contact", id: "/contact" } ]; @@ -26,7 +27,7 @@ export default function LandingPage() { - Project Scrapped + Welcome to ChefSelect