diff --git a/src/pages/PricingPage.tsx b/src/pages/PricingPage.tsx index 8ce27ba..341dee1 100644 --- a/src/pages/PricingPage.tsx +++ b/src/pages/PricingPage.tsx @@ -1,89 +1,16 @@ -import React from "react"; -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; // Corrected import path -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; import PricingHighlightedCards from "@/components/sections/pricing/PricingHighlightedCards"; -import FaqSimple from "@/components/sections/faq/FaqSimple"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; -const PricingPage: React.FC = () => { +export default function PricingPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Get Started", href: "/contact" }} + <> + -
- - - -
- -
+ ); -}; - -export default PricingPage; \ No newline at end of file +}