Update src/app/pricing/page.tsx

This commit is contained in:
2026-03-15 22:02:21 +00:00
parent f681484829
commit d6a0f60f12

View File

@@ -18,8 +18,7 @@ export default function PricingPage() {
const footerColumns = [
{
title: "Company",
items: [
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "Pricing", href: "/pricing" },
@@ -27,8 +26,7 @@ export default function PricingPage() {
],
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Website Design", href: "/services" },
{ label: "SEO Optimization", href: "/services" },
{ label: "Website Hosting", href: "/services" },
@@ -36,8 +34,7 @@ export default function PricingPage() {
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "How It Works", href: "/#how-it-works" },
{ label: "Testimonials", href: "/#testimonials" },
{ label: "FAQ", href: "#" },
@@ -45,8 +42,7 @@ export default function PricingPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Contact", href: "/contact" },
@@ -83,64 +79,31 @@ export default function PricingPage() {
tagAnimation="blur-reveal"
plans={[
{
id: "starter",
name: "Starter",
price: "$75",
badge: "Popular",
badgeIcon: Star,
id: "starter", name: "Starter", price: "$99", badge: "Popular", badgeIcon: Star,
buttons: [
{
text: "Get Started",
href: "/contact",
},
text: "Get Started", href: "/contact"},
],
features: [
"Professional website design",
"Mobile-friendly & responsive",
"Fast, secure hosting",
"Email contact form",
"Basic SEO setup",
],
"Professional website design", "Mobile-friendly & responsive", "Fast, secure hosting", "Email contact form", "Basic SEO setup"],
},
{
id: "growth",
name: "Growth",
price: "$125",
badge: "Best Value",
badgeIcon: TrendingUp,
id: "growth", name: "Growth", price: "$149", badge: "Best Value", badgeIcon: TrendingUp,
buttons: [
{
text: "Get Started",
href: "/contact",
},
text: "Get Started", href: "/contact"},
],
features: [
"Everything in Starter, plus:",
"Monthly content updates",
"Google search optimization",
"Performance monitoring",
"Monthly improvements",
],
"Everything in Starter, plus:", "Monthly content updates", "Google search optimization", "Performance monitoring", "Monthly improvements"],
},
{
id: "premium",
name: "Premium",
price: "$200",
badge: "Most Complete",
badgeIcon: Sparkles,
id: "premium", name: "Premium", price: "$249", badge: "Most Complete", badgeIcon: Sparkles,
buttons: [
{
text: "Get Started",
href: "/contact",
},
text: "Get Started", href: "/contact"},
],
features: [
"Everything in Growth, plus:",
"Advanced SEO strategy",
"Monthly business analysis",
"Priority email support",
"Quarterly strategy calls",
],
"Everything in Growth, plus:", "Advanced SEO strategy", "Monthly business analysis", "Priority email support", "Quarterly strategy calls"],
},
]}
animationType="slide-up"
@@ -158,18 +121,13 @@ export default function PricingPage() {
description="Join dozens of local businesses getting more customers with a professional website. Start with your first month and see results."
buttons={[
{
text: "Start Your Free Consultation",
href: "/contact",
},
text: "Start Your Free Consultation", href: "/contact"},
{
text: "View Pricing",
href: "/pricing",
},
text: "View Pricing", href: "/pricing"},
]}
buttonAnimation="slide-up"
background={{
variant: "gradient-bars",
}}
variant: "gradient-bars"}}
useInvertedBackground={false}
/>
</div>