import { Heart, Sparkles } from "lucide-react"; import LoveCalculator from "@/components/LoveCalculator"; import FloatingHearts from "@/components/FloatingHearts"; import Footer from "@/components/Footer"; import { Helmet } from "react-helmet-async"; const Index = () => { return ( <> MatchMyLove - Love Compatibility Calculator | Find Your Perfect Match
{/* Hero Section */}
{/* Logo */}
MatchMyLove
{/* Headline */}

Discover Your Love Compatibility

{/* Subheadline */}

Enter your names and uncover the magic of your connection ✨

{/* Calculator */} {/* Features */}
{[ { icon: "💫", title: "Instant Results", description: "Get your compatibility score in seconds with our advanced algorithm", }, { icon: "💕", title: "Share With Love", description: "Easily share your results on social media with friends and family", }, { icon: "🔮", title: "Fun & Accurate", description: "Based on name numerology for entertaining and insightful results", }, ].map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
{/* Social Proof */}

Trusted by millions of lovers worldwide

10M+
Tests Taken
150+
Countries
4.9★
User Rating
); }; export default Index;