From 73bdbb6349c4babd1dd59bd73dccbedec7981b5b Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Fri, 24 Apr 2026 16:42:16 +0300 Subject: [PATCH] Bob AI: Populate src/pages/PricingPage.tsx (snippet builder, 1 sections) --- src/pages/PricingPage.tsx | 95 +++++---------------------------------- 1 file changed, 11 insertions(+), 84 deletions(-) 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 +}