diff --git a/src/pages/HomePage/sections/Packages.tsx b/src/pages/HomePage/sections/Packages.tsx index 960ce59..2d2dc86 100644 --- a/src/pages/HomePage/sections/Packages.tsx +++ b/src/pages/HomePage/sections/Packages.tsx @@ -1,57 +1,129 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "packages" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import { Check } from "lucide-react"; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; -import React from 'react'; -import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const plans = [ + { + tag: "WEB X PRO", + price: "$14,900", + period: "MXN", + features: [ + "10 pages", + "On-page SEO", + "Forms & WhatsApp", + "GMB Premium", + "1 month support" + ], + primaryButton: { + text: "Get Pro", + href: "#contact" + }, + imageSrc: "http://img.b2bpic.net/free-psd/start-up-landing-page-template_23-2148819558.jpg" + }, + { + tag: "WEB X DOMINATOR", + price: "$24,900", + period: "MXN", + features: [ + "Everything in Pro", + "Campaign Landing Page", + "Google Analytics", + "Traffic Report", + "3 months support" + ], + primaryButton: { + text: "Get Dominator", + href: "#contact" + }, + imageSrc: "http://img.b2bpic.net/free-psd/business-corporation-template_23-2151402198.jpg" + } +]; -export default function PackagesSection(): React.JSX.Element { - return ( -
- - ( +
+
+
+
+

{"PACKAGES"}

+
+ + - + + + + {(undefined || undefined) && ( +
+ {undefined &&
+ )}
+ +
+ {plans.map((plan) => ( + +
+ +
+ +
+
+

{plan.price}{plan.period}

+
+

{plan.tag}

+ +
+ {plan.features.map((feature) => ( +
+
+ +
+ {feature} +
+ ))} +
+ +
+
+ ))} +
+
+
+); + +export default function PackagesSection() { + return ( +
+ +
); }