import { Link } from 'react-router-dom' import { Link2, Sparkles, Zap, Shield, BarChart3, Palette, QrCode, Globe, ArrowRight, Check, Star, ChevronRight } from 'lucide-react' export default function Landing() { const features = [ { icon: Link2, title: 'Custom Links', description: 'Create unlimited custom links to share with your audience' }, { icon: Palette, title: 'Beautiful Themes', description: 'Customize colors, fonts, and styles to match your brand' }, { icon: QrCode, title: 'QR Codes', description: 'Generate QR codes for easy offline sharing' }, { icon: Globe, title: 'Social Integration', description: 'Connect all your social media profiles in one place' }, { icon: BarChart3, title: 'Analytics', description: 'Track visits and engagement with detailed insights' }, { icon: Shield, title: 'Secure & Fast', description: 'Enterprise-grade security with lightning-fast load times' } ] const plans = [ { name: 'Free', price: '$0', period: 'forever', features: [ 'Unlimited links', 'Custom themes', 'QR code generation', 'Social media links', 'Mobile optimized' ], cta: 'Get Started Free', popular: false }, { name: 'Pro', price: '$9', period: '/month', features: [ 'Everything in Free', 'Advanced analytics', 'Custom domain', 'Priority support', 'Remove branding' ], cta: 'Start Pro Trial', popular: true }, { name: 'Business', price: '$29', period: '/month', features: [ 'Everything in Pro', 'Team collaboration', 'API access', 'White-label solution', 'Dedicated support' ], cta: 'Contact Sales', popular: false } ] return (
{/* Navigation */} {/* Hero Section */}
{/* Badge */}
The #1 Link-in-Bio Platform
{/* Headline */}

One Link to Rule Them All

{/* Subheadline */}

Create a beautiful, customizable page that houses all your important links. Share your brand, content, and products with the world in seconds.

{/* CTA Buttons */}
Create Your Page See Features
{/* Social Proof */}
{[1, 2, 3, 4, 5].map((i) => (
{String.fromCharCode(64 + i)}
))}
{[1, 2, 3, 4, 5].map((i) => ( ))}
4.9/5 from 10,000+ users
{/* Hero Image/Preview */}
{/* Browser Mockup */}
{/* Browser Header */}
links.arkylx.com/yourbrand
{/* Preview Content */}
YB

Your Brand

Your awesome bio goes here

{['Website', 'Shop', 'YouTube', 'Instagram'].map((link) => (
{link}
))}
{/* Features Section */}
Powerful Features

Everything You Need

Build your perfect link page with our comprehensive set of tools

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* Pricing Section */}
Simple Pricing

Choose Your Plan

Start free and scale as you grow. No hidden fees.

{plans.map((plan, index) => (
{plan.popular && (
Most Popular
)}

{plan.name}

{plan.price} {plan.period}
    {plan.features.map((feature, i) => (
  • {feature}
  • ))}
{plan.cta}
))}
{/* CTA Section */}
{/* Background decoration */}

Ready to Get Started?

Join thousands of creators and businesses who trust ArkLinks to power their online presence.

Create Your Free Page
{/* Footer */}
) }