diff --git a/src/app/page.tsx b/src/app/page.tsx index 0376ba7..8e2a8ba 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -37,6 +37,7 @@ export default function LandingPage() { { name: "Leistungen", id: "features" }, { name: "Produkte", id: "products" }, { name: "Kontakt", id: "contact" }, + { name: "Preise", id: "/upgrade-plan" }, ]} brandName="Oesterle & Haug & Co." /> diff --git a/src/app/upgrade-plan/page.tsx b/src/app/upgrade-plan/page.tsx new file mode 100644 index 0000000..b50e290 --- /dev/null +++ b/src/app/upgrade-plan/page.tsx @@ -0,0 +1,67 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { CheckCircle } from "lucide-react"; + +export default function UpgradePlanPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file