import { Button } from “@/components/ui/button”; import { motion } from “framer-motion”; import { ArrowRight, Zap, BookOpen, Shield, Smartphone } from “lucide-react”; import { easeInOut, easeOut } from “framer-motion”; /** * Design Philosophy: Kinetic Minimalism with Glassmorphism * – Deep navy backgrounds with cyan accents * – Smooth, purposeful animations * – Glassmorphic cards with hover effects * – Fluid scroll-triggered animations */ const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.1, delayChildren: 0.2, }, }, }; const itemVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6, ease: easeOut }, }, }; const floatingVariants = { initial: { y: 0 }, animate: { y: [-10, 10, -10], transition: { duration: 4, repeat: Infinity, ease: easeInOut }, }, }; export default function Home() { return (

{/* Navigation */} {/* Hero Section */}
{/* Background elements */}
{/* Left content */} ✨ Free Tech Help Platform Tech Help Made Simple Step-by-step tutorials to fix Android problems, Windows issues, and learn technology. No technical skills needed—we explain everything in simple language.

100%

Free Forever

Always Updated

Easy to Follow

{/* Right visual */}
{/* How It Works Section */}

How It Works

Simple steps to solve your tech problems

{[ { icon: Smartphone, title: “Find Your Problem”, desc: “Browse categories or search for guides matching your specific tech issue.” }, { icon: BookOpen, title: “Follow Step-by-Step”, desc: “Each guide has clear instructions with screenshots. Follow at your own pace.” }, { icon: Zap, title: “Solve & Learn”, desc: “Fix your issue and understand how it works. Build confidence for future problems.” }, ].map((step, idx) => (

{step.title}

{step.desc}

))}
{/* Categories Section */}

Popular Tech Help Topics

Find guides for your specific needs

{[ { title: “Android Fix Guides”, desc: “Battery drain, app crashes, slow performance”, icon: “📱” }, { title: “App Not Working”, desc: “Troubleshoot apps that won’t open or crash”, icon: “⚙️” }, { title: “Internet & Network”, desc: “Wi-Fi problems, slow internet, router issues”, icon: “📡” }, { title: “How-To Basics”, desc: “Smartphone setup, computer basics, file management”, icon: “📚” }, { title: “Windows PC Help”, desc: “Speed up Windows, fix errors, remove viruses”, icon: “🖥️” }, { title: “Security & Privacy”, desc: “Remove malware, secure passwords, avoid scams”, icon: “🔒” }, ].map((category, idx) => (
{category.icon}

{category.title}

{category.desc}

))}
{/* Why Different Section */}

Why Our Guides Are Different

{[ { title: “Completely Free”, desc: “No hidden charges, no premium content. All guides are 100% free with no registration required.”, icon: “💰” }, { title: “Simple Language”, desc: “No technical jargon. We explain everything in plain English that beginners can understand.”, icon: “📖” }, { title: “Visual Guides”, desc: “Step-by-step screenshots and videos show exactly what to do. No confusion, just clear instructions.”, icon: “🎨” }, { title: “Regular Updates”, desc: “Guides are updated for latest Windows, Android versions. We keep pace with technology changes.”, icon: “🔄” }, ].map((feature, idx) => (
{feature.icon}

{feature.title}

{feature.desc}

))}
{/* CTA Section */}

Start Solving Your Tech Problems Today

Join thousands who have successfully fixed their devices. No advanced technical knowledge needed.

{/* Footer */}

); }

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top
×