diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..d193df0 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,53 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+
+ ); +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..1b689aa --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,57 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index f559d68..3d5c08c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,8 +36,8 @@ export default function LandingPage() { { name: "Menu", id: "menu" }, { name: "Reservations", id: "pricing" }, { name: "Events", id: "features" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "About", href: "/about" }, + { name: "Contact", href: "/contact" }, ]} brandName="SOYA" />