Update src/app/premium/page.tsx

This commit is contained in:
2026-03-13 14:10:43 +00:00
parent 1ddc861aae
commit d3eb66748b

View File

@@ -18,8 +18,7 @@ export default function PremiumPage() {
const footerColumns = [
{
title: "Tools",
items: [
title: "Tools", items: [
{ label: "Speed Test", href: "/" },
{ label: "WiFi Analyzer", href: "/" },
{ label: "File Converter", href: "/" },
@@ -27,8 +26,7 @@ export default function PremiumPage() {
],
},
{
title: "More Tools",
items: [
title: "More Tools", items: [
{ label: "Password Generator", href: "/" },
{ label: "IP Finder", href: "/" },
{ label: "QR Code Generator", href: "/" },
@@ -36,8 +34,7 @@ export default function PremiumPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/" },
{ label: "Blog", href: "/blog" },
{ label: "Pricing", href: "/premium" },
@@ -45,8 +42,7 @@ export default function PremiumPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "/" },
{ label: "Terms of Service", href: "/" },
{ label: "Affiliate Program", href: "/" },
@@ -62,7 +58,7 @@ export default function PremiumPage() {
borderRadius="soft"
contentWidth="compact"
sizing="large"
background="noise"
background="circleGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
@@ -114,78 +110,38 @@ export default function PremiumPage() {
animationType="slide-up"
plans={[
{
id: "free",
badge: "Forever Free",
price: "$0",
subtitle: "Perfect for getting started",
buttons: [
id: "free", badge: "Forever Free", price: "$0", subtitle: "Perfect for getting started", buttons: [
{
text: "Get Started",
href: "/signup",
},
text: "Get Started", href: "/signup"},
],
features: [
"All 8 core tools",
"Basic file conversion",
"Standard compression quality",
"5 password generations/day",
"Community support",
],
"All 8 core tools", "Basic file conversion", "Standard compression quality", "5 password generations/day", "Community support"],
},
{
id: "pro",
badge: "Most Popular",
badgeIcon: Star,
price: "$9.99",
subtitle: "Per month, cancel anytime",
buttons: [
id: "pro", badge: "Most Popular", badgeIcon: Star,
price: "$9.99", subtitle: "Per month, cancel anytime", buttons: [
{
text: "Start Pro Trial",
href: "/signup?plan=pro",
},
text: "Start Pro Trial", href: "/signup?plan=pro"},
],
features: [
"Unlimited all tools",
"Premium file converter",
"Lossless compression",
"Unlimited passwords",
"Batch processing (100 files)",
"Priority email support",
"Ad-free experience",
],
"Unlimited all tools", "Premium file converter", "Lossless compression", "Unlimited passwords", "Batch processing (100 files)", "Priority email support", "Ad-free experience"],
},
{
id: "business",
badge: "For Teams",
badgeIcon: Shield,
price: "$49.99",
subtitle: "Per month for up to 5 users",
buttons: [
id: "business", badge: "For Teams", badgeIcon: Shield,
price: "$49.99", subtitle: "Per month for up to 5 users", buttons: [
{
text: "Contact Sales",
href: "/contact?plan=business",
},
text: "Contact Sales", href: "/contact?plan=business"},
],
features: [
"Everything in Pro",
"Team collaboration",
"Usage analytics dashboard",
"API access",
"Batch processing (1000+ files)",
"Dedicated support",
"SSO & Admin controls",
"White-label options",
],
"Everything in Pro", "Team collaboration", "Usage analytics dashboard", "API access", "Batch processing (1000+ files)", "Dedicated support", "SSO & Admin controls", "White-label options"],
},
]}
buttons={[
{
text: "View All Features",
href: "#features",
},
text: "View All Features", href: "#features"},
]}
containerClassName="max-w-6xl"
titleClassName="text-4xl font-bold mb-4"
textBoxTitleClassName="text-4xl font-bold mb-4"
/>
</div>
@@ -282,29 +238,17 @@ export default function PremiumPage() {
<div className="space-y-6">
{[
{
q: "Can I switch plans anytime?",
a: "Yes! You can upgrade or downgrade your plan at any time. Changes take effect immediately, and we'll prorate any charges accordingly.",
},
q: "Can I switch plans anytime?", a: "Yes! You can upgrade or downgrade your plan at any time. Changes take effect immediately, and we'll prorate any charges accordingly."},
{
q: "Is there a free trial for Pro?",
a: "Absolutely. Start your 14-day free trial of Pro with full access to all premium features. No credit card required.",
},
q: "Is there a free trial for Pro?", a: "Absolutely. Start your 14-day free trial of Pro with full access to all premium features. No credit card required."},
{
q: "What payment methods do you accept?",
a: "We accept all major credit cards, PayPal, and bank transfers for Business plans. All payments are secure and encrypted.",
},
q: "What payment methods do you accept?", a: "We accept all major credit cards, PayPal, and bank transfers for Business plans. All payments are secure and encrypted."},
{
q: "Do you offer refunds?",
a: "If you're unsatisfied within 30 days of purchase, we offer a full refund. No questions asked.",
},
q: "Do you offer refunds?", a: "If you're unsatisfied within 30 days of purchase, we offer a full refund. No questions asked."},
{
q: "What about team billing?",
a: "Business plans support team billing. Contact our sales team to set up organization-wide licensing and centralized billing.",
},
q: "What about team billing?", a: "Business plans support team billing. Contact our sales team to set up organization-wide licensing and centralized billing."},
{
q: "Do you offer custom plans?",
a: "Yes, for large organizations. Contact our sales team to discuss custom pricing, volume discounts, and enterprise features.",
},
q: "Do you offer custom plans?", a: "Yes, for large organizations. Contact our sales team to discuss custom pricing, volume discounts, and enterprise features."},
].map((item, idx) => (
<div
key={idx}