Files
ff6ccf88-52b2-41b2-a2cd-1db…/src/pages/HomePage/sections/Packages.tsx

58 lines
1.9 KiB
TypeScript

// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "packages" section.
import React from 'react';
import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function PackagesSection(): React.JSX.Element {
return (
<div id="packages" data-section="packages">
<SectionErrorBoundary name="packages">
<PricingMediaCards
tag="PACKAGES"
title="CHOOSE YOUR [X] LEVEL"
description="Transparent pricing for complete solutions."
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",
},
]}
textAnimation="fade-blur"
/>
</SectionErrorBoundary>
</div>
);
}