diff --git a/src/app/page.tsx b/src/app/page.tsx index 5580fa9..f8fd40d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -38,6 +38,8 @@ export default function LandingPage() { name: "Über Uns", id: "#about"}, { name: "Speisekarte", id: "#menu"}, + { + name: "Preise", id: "/pricing"}, { name: "Besonderheiten", id: "#features"}, { @@ -254,6 +256,8 @@ export default function LandingPage() { label: "Über Uns", href: "#about"}, { label: "Speisekarte", href: "#menu"}, + { + label: "Preise", href: "/pricing"}, { label: "Kontakt", href: "#contact"}, ], diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..d386fef --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,104 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +export default function PricingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}