import type { Metadata } from 'next' const siteUrl = process.env.NEXT_PUBLIC_SITE_URL || 'https://pounce.com' export const pricingMetadata: Metadata = { title: 'Pricing Plans - Domain Intelligence & Market Access', description: 'Choose your domain intelligence plan. Scout (Free), Trader ($9/mo), or Tycoon ($29/mo). Live market data, spam-filtered auctions, and portfolio monitoring. 0% commission on Pounce Direct sales.', keywords: [ 'domain intelligence pricing', 'domain monitoring subscription', 'domain portfolio management', 'domain marketplace free', 'domain auction monitoring', 'TLD price tracking', 'domain investing plans', 'domain valuation tools', ], openGraph: { title: 'Pricing Plans - Pounce Domain Intelligence', description: 'Scout (Free), Trader ($9/mo), Tycoon ($29/mo). Live market data, spam-filtered auctions, and portfolio monitoring.', url: `${siteUrl}/pricing`, type: 'website', images: [ { url: `${siteUrl}/og-pricing.png`, width: 1200, height: 630, alt: 'Pounce Pricing Plans', }, ], }, twitter: { card: 'summary_large_image', title: 'Pricing Plans - Pounce Domain Intelligence', description: 'Scout (Free), Trader ($9/mo), Tycoon ($29/mo). Clean market feed, faster monitoring, and verified listings.', images: [`${siteUrl}/og-pricing.png`], }, alternates: { canonical: `${siteUrl}/pricing`, }, } /** * Structured data for pricing page */ export function getPricingStructuredData() { return { '@context': 'https://schema.org', '@type': 'ProductGroup', name: 'Pounce Domain Intelligence Subscriptions', description: 'Domain intelligence and monitoring subscriptions for investors and traders', brand: { '@type': 'Brand', name: 'Pounce', }, hasVariant: [ { '@type': 'Product', name: 'Scout Plan', description: 'Free domain intelligence - 5 watchlist domains, basic market access, email alerts', brand: { '@type': 'Brand', name: 'Pounce', }, offers: { '@type': 'Offer', price: '0', priceCurrency: 'USD', availability: 'https://schema.org/InStock', seller: { '@type': 'Organization', name: 'Pounce', }, }, }, { '@type': 'Product', name: 'Trader Plan', description: 'Professional domain intelligence - 50 watchlist domains, spam-filtered feed, hourly monitoring, renewal price intel, 5 marketplace listings', brand: { '@type': 'Brand', name: 'Pounce', }, offers: { '@type': 'Offer', price: '9.00', priceCurrency: 'USD', availability: 'https://schema.org/InStock', priceValidUntil: '2025-12-31', seller: { '@type': 'Organization', name: 'Pounce', }, }, aggregateRating: { '@type': 'AggregateRating', ratingValue: '4.8', reviewCount: '250', }, }, { '@type': 'Product', name: 'Tycoon Plan', description: 'Enterprise domain intelligence - 500 watchlist domains, 10-minute monitoring, priority alerts, SMS notifications, unlimited portfolio, 50 marketplace listings, featured badge', brand: { '@type': 'Brand', name: 'Pounce', }, offers: { '@type': 'Offer', price: '29.00', priceCurrency: 'USD', availability: 'https://schema.org/InStock', priceValidUntil: '2025-12-31', seller: { '@type': 'Organization', name: 'Pounce', }, }, aggregateRating: { '@type': 'AggregateRating', ratingValue: '4.9', reviewCount: '150', }, }, ], } } /** * FAQ Structured Data for Pricing */ export function getPricingFAQStructuredData() { return { '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: [ { '@type': 'Question', name: 'Is there a free plan?', acceptedAnswer: { '@type': 'Answer', text: 'Yes! Scout plan is free forever with 5 watchlist domains, basic market access, and email alerts. Perfect for getting started with domain intelligence.', }, }, { '@type': 'Question', name: 'Can I upgrade or downgrade anytime?', acceptedAnswer: { '@type': 'Answer', text: 'Absolutely. You can upgrade or downgrade your plan at any time. Changes take effect immediately, and billing is prorated.', }, }, { '@type': 'Question', name: 'Do you charge commission on marketplace sales?', acceptedAnswer: { '@type': 'Answer', text: 'No! Pounce charges 0% commission on all marketplace transactions. Unlike competitors who charge 15-20%, you keep 100% of your sale price.', }, }, { '@type': 'Question', name: 'What payment methods do you accept?', acceptedAnswer: { '@type': 'Answer', text: 'We accept all major credit cards (Visa, Mastercard, American Express) and debit cards through Stripe. All payments are secure and encrypted.', }, }, { '@type': 'Question', name: 'How often are domains monitored?', acceptedAnswer: { '@type': 'Answer', text: 'Scout: Daily checks. Trader: Hourly checks. Tycoon: Every 10 minutes. You get instant email alerts when watched domains become available or when price changes occur.', }, }, { '@type': 'Question', name: 'Can I cancel anytime?', acceptedAnswer: { '@type': 'Answer', text: 'Yes, there are no contracts or commitments. Cancel anytime from your settings. Your data remains accessible until the end of your billing period.', }, }, ], } }