Update src/app/pricing/page.tsx

This commit is contained in:
2026-03-03 06:55:51 +00:00
parent f7647e051b
commit fbacb6f990

View File

@@ -19,8 +19,7 @@ export default function PricingPage() {
const footerColumns = [
{
title: "Product",
items: [
title: "Product", items: [
{ label: "Browse", href: "/browse" },
{ label: "Pricing", href: "/pricing" },
{ label: "Features", href: "#" },
@@ -28,8 +27,7 @@ export default function PricingPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
@@ -37,8 +35,7 @@ export default function PricingPage() {
],
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Help Center", href: "#" },
{ label: "Contact Us", href: "/contact" },
{ label: "Privacy Policy", href: "#" },
@@ -76,52 +73,21 @@ export default function PricingPage() {
tagIcon={Sparkles}
plans={[
{
id: "basic",
badge: "Popular",
badgeIcon: Sparkles,
price: "$7.99/mo",
subtitle: "Perfect for casual viewers",
features: [
"HD streaming (720p)",
"Watch on 1 device",
"Standard subtitle quality",
"Ad-supported viewing",
],
id: "basic", badge: "Popular", badgeIcon: Sparkles,
price: "$7.99/mo", subtitle: "Perfect for casual viewers", features: [
"HD streaming (720p)", "Watch on 1 device", "Standard subtitle quality", "Ad-supported viewing"],
},
{
id: "premium",
badge: "Most Popular",
badgeIcon: Star,
price: "$12.99/mo",
subtitle: "Best value for anime fans",
features: [
"4K streaming (up to 2160p)",
"Watch on 2 devices simultaneously",
"Premium subtitle quality",
"Ad-free experience",
"Offline downloads",
"Priority customer support",
],
id: "premium", badge: "Most Popular", badgeIcon: Star,
price: "$12.99/mo", subtitle: "Best value for anime fans", features: [
"4K streaming (up to 2160p)", "Watch on 2 devices simultaneously", "Premium subtitle quality", "Ad-free experience", "Offline downloads", "Priority customer support"],
},
{
id: "ultra",
badge: "Premium",
badgeIcon: Zap,
price: "$16.99/mo",
subtitle: "For dedicated anime enthusiasts",
features: [
"4K streaming with Dolby Vision",
"Watch on 4 devices simultaneously",
"Exclusive dubs and languages",
"Ad-free experience",
"Unlimited offline downloads",
"Early access to new releases",
"Exclusive manga access",
"VIP customer support",
],
id: "ultra", badge: "Premium", badgeIcon: Zap,
price: "$16.99/mo", subtitle: "For dedicated anime enthusiasts", features: [
"4K streaming with Dolby Vision", "Watch on 4 devices simultaneously", "Exclusive dubs and languages", "Ad-free experience", "Unlimited offline downloads", "Early access to new releases", "Exclusive manga access", "VIP customer support"],
},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
@@ -137,35 +103,17 @@ export default function PricingPage() {
tagIcon={HelpCircle}
faqs={[
{
id: "1",
title: "Can I change my plan anytime?",
content: "Yes! You can upgrade or downgrade your plan at any time. Changes take effect immediately, and we'll prorate your billing accordingly.",
},
id: "1", title: "Can I change my plan anytime?", content: "Yes! You can upgrade or downgrade your plan at any time. Changes take effect immediately, and we'll prorate your billing accordingly."},
{
id: "2",
title: "What payment methods do you accept?",
content: "We accept all major credit cards (Visa, Mastercard, American Express), PayPal, and digital wallets like Apple Pay and Google Pay.",
},
id: "2", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, Mastercard, American Express), PayPal, and digital wallets like Apple Pay and Google Pay."},
{
id: "3",
title: "Is there a long-term commitment?",
content: "No! All our plans are month-to-month with no long-term commitment. Cancel anytime with no cancellation fees or hidden charges.",
},
id: "3", title: "Is there a long-term commitment?", content: "No! All our plans are month-to-month with no long-term commitment. Cancel anytime with no cancellation fees or hidden charges."},
{
id: "4",
title: "Do you offer annual billing discounts?",
content: "Yes! Pay for 12 months upfront and save 20% compared to monthly billing. This discount applies to all subscription tiers.",
},
id: "4", title: "Do you offer annual billing discounts?", content: "Yes! Pay for 12 months upfront and save 20% compared to monthly billing. This discount applies to all subscription tiers."},
{
id: "5",
title: "What happens when my free trial ends?",
content: "After your 14-day free trial, your subscription will automatically convert to your chosen plan. You'll be charged on the first day of your subscription.",
},
id: "5", title: "What happens when my free trial ends?", content: "After your 14-day free trial, your subscription will automatically convert to your chosen plan. You'll be charged on the first day of your subscription."},
{
id: "6",
title: "Can I get a refund?",
content: "We offer a 7-day money-back guarantee for new subscribers if you're not satisfied. Contact our support team to initiate a refund within 7 days of your first charge.",
},
id: "6", title: "Can I get a refund?", content: "We offer a 7-day money-back guarantee for new subscribers if you're not satisfied. Contact our support team to initiate a refund within 7 days of your first charge."},
]}
textboxLayout="default"
useInvertedBackground={false}