Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>IELTS Mastery - Your Path to English Excellence</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| body { | |
| font-family: 'Poppins', sans-serif; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); | |
| } | |
| .btn-gradient { | |
| background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%); | |
| } | |
| .btn-gradient:hover { | |
| background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%); | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
| } | |
| .testimonial-card { | |
| transition: all 0.3s ease; | |
| } | |
| .testimonial-card:hover { | |
| transform: scale(1.03); | |
| } | |
| .course-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
| } | |
| .teacher-card:hover { | |
| transform: translateY(-5px); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-sm sticky top-0 z-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <i class="fas fa-graduation-cap text-blue-600 text-2xl mr-2"></i> | |
| <span class="text-xl font-bold text-blue-600">IELTS Mastery</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> | |
| <a href="#" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Home</a> | |
| <a href="#features" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Features</a> | |
| <a href="#courses" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Courses</a> | |
| <a href="#testimonials" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Testimonials</a> | |
| <a href="#team" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Our Team</a> | |
| </div> | |
| <div class="hidden md:ml-6 md:flex md:items-center"> | |
| <a href="/login" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Login</a> | |
| <a href="/register" class="ml-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white btn-gradient hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"> | |
| Get Started | |
| </a> | |
| </div> | |
| <div class="-mr-2 flex items-center md:hidden"> | |
| <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500" aria-controls="mobile-menu" aria-expanded="false" id="mobile-menu-button"> | |
| <span class="sr-only">Open main menu</span> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div class="hidden md:hidden" id="mobile-menu"> | |
| <div class="pt-2 pb-3 space-y-1"> | |
| <a href="#" class="bg-blue-50 border-blue-500 text-blue-600 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a> | |
| <a href="#features" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Features</a> | |
| <a href="#courses" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Courses</a> | |
| <a href="#testimonials" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Testimonials</a> | |
| <a href="#team" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Our Team</a> | |
| </div> | |
| <div class="pt-4 pb-3 border-t border-gray-200"> | |
| <div class="mt-3 space-y-1"> | |
| <a href="/login" class="block px-4 py-2 text-base font-medium text-gray-500 hover:text-gray-800 hover:bg-gray-100">Login</a> | |
| <a href="/register" class="block w-full text-left px-4 py-2 text-base font-medium text-blue-600 hover:text-blue-800 hover:bg-blue-50">Get Started</a> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <div class="gradient-bg"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8 lg:py-24"> | |
| <div class="lg:grid lg:grid-cols-2 lg:gap-8 lg:items-center"> | |
| <div> | |
| <h1 class="text-4xl font-extrabold tracking-tight text-white sm:text-5xl lg:text-6xl"> | |
| Master IELTS with Confidence | |
| </h1> | |
| <p class="mt-3 max-w-3xl text-lg text-blue-100"> | |
| Our comprehensive platform helps students of all ages achieve their IELTS goals with personalized learning paths, expert teachers, and advanced tracking tools. | |
| </p> | |
| <div class="mt-8 sm:flex sm:max-w-md"> | |
| <div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3"> | |
| <a href="/register" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-700 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10"> | |
| Start Free Trial | |
| </a> | |
| </div> | |
| <div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3"> | |
| <a href="#demo" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-500 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10"> | |
| Watch Demo | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 lg:mt-0"> | |
| <div class="relative w-full rounded-lg shadow-xl overflow-hidden"> | |
| <img class="w-full" src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80" alt="Students learning"> | |
| <div class="absolute inset-0 bg-blue-500 mix-blend-multiply"></div> | |
| <div class="absolute inset-0 bg-gradient-to-t from-blue-600 via-blue-600 opacity-70"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Stats Section --> | |
| <div class="bg-white py-12"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Trusted by thousands</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Proven Results Across All Age Groups | |
| </p> | |
| </div> | |
| <div class="mt-10"> | |
| <div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-4"> | |
| <div class="text-center"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white mx-auto"> | |
| <i class="fas fa-users text-xl"></i> | |
| </div> | |
| <h3 class="mt-6 text-3xl font-extrabold text-gray-900">10,000+</h3> | |
| <p class="mt-2 text-base text-gray-500">Students Enrolled</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white mx-auto"> | |
| <i class="fas fa-chart-line text-xl"></i> | |
| </div> | |
| <h3 class="mt-6 text-3xl font-extrabold text-gray-900">92%</h3> | |
| <p class="mt-2 text-base text-gray-500">Achieve Target Scores</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white mx-auto"> | |
| <i class="fas fa-user-tie text-xl"></i> | |
| </div> | |
| <h3 class="mt-6 text-3xl font-extrabold text-gray-900">150+</h3> | |
| <p class="mt-2 text-base text-gray-500">Certified Teachers</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white mx-auto"> | |
| <i class="fas fa-headset text-xl"></i> | |
| </div> | |
| <h3 class="mt-6 text-3xl font-extrabold text-gray-900">24/7</h3> | |
| <p class="mt-2 text-base text-gray-500">TA Support Available</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Features Section --> | |
| <div id="features" class="py-12 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Features</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Everything You Need to Succeed | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> | |
| Our platform is designed to help students of all levels achieve their IELTS goals. | |
| </p> | |
| </div> | |
| <div class="mt-10"> | |
| <div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-4"> | |
| <!-- Feature 1 --> | |
| <div class="feature-card bg-white p-6 rounded-lg shadow-md transition duration-300 ease-in-out"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
| <i class="fas fa-clipboard-check text-xl"></i> | |
| </div> | |
| <div class="mt-5"> | |
| <h3 class="text-lg font-medium text-gray-900">Practice Tests</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Full-length IELTS practice tests with automated scoring and detailed feedback. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="feature-card bg-white p-6 rounded-lg shadow-md transition duration-300 ease-in-out"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
| <i class="fas fa-layer-group text-xl"></i> | |
| </div> | |
| <div class="mt-5"> | |
| <h3 class="text-lg font-medium text-gray-900">Multi-level Courses</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Courses tailored for all levels from beginner to advanced, with adaptive learning paths. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="feature-card bg-white p-6 rounded-lg shadow-md transition duration-300 ease-in-out"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
| <i class="fas fa-chalkboard-teacher text-xl"></i> | |
| </div> | |
| <div class="mt-5"> | |
| <h3 class="text-lg font-medium text-gray-900">1-on-1 Tutoring</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Personalized sessions with certified IELTS instructors to focus on your weak areas. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Feature 4 --> | |
| <div class="feature-card bg-white p-6 rounded-lg shadow-md transition duration-300 ease-in-out"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
| <i class="fas fa-hands-helping text-xl"></i> | |
| </div> | |
| <div class="mt-5"> | |
| <h3 class="text-lg font-medium text-gray-900">TA Support</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Round-the-clock support from teaching assistants to answer your questions. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Courses Section --> | |
| <div id="courses" class="py-12 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Courses</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Structured Learning Paths | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> | |
| Choose the course that matches your current level and target score. | |
| </p> | |
| </div> | |
| <div class="mt-10 grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3"> | |
| <!-- Course 1 --> | |
| <div class="course-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out"> | |
| <div class="px-6 py-4 bg-blue-50"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
| <i class="fas fa-flag text-xl"></i> | |
| </div> | |
| <h3 class="mt-4 text-lg font-medium text-gray-900">IELTS Foundation</h3> | |
| <p class="mt-2 text-sm text-gray-500"> | |
| For beginners starting their IELTS journey (Target: 4.0-5.5) | |
| </p> | |
| </div> | |
| <div class="px-6 py-4"> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Basic grammar & vocabulary</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Introduction to test format</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Simple practice exercises</span> | |
| </li> | |
| </ul> | |
| <div class="mt-6"> | |
| <a href="#" class="text-blue-600 hover:text-blue-800 font-medium">Learn more →</a> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Course 2 --> | |
| <div class="course-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out"> | |
| <div class="px-6 py-4 bg-blue-50"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
| <i class="fas fa-medal text-xl"></i> | |
| </div> | |
| <h3 class="mt-4 text-lg font-medium text-gray-900">IELTS Intermediate</h3> | |
| <p class="mt-2 text-sm text-gray-500"> | |
| For students aiming for university admission (Target: 5.5-7.0) | |
| </p> | |
| </div> | |
| <div class="px-6 py-4"> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Advanced vocabulary building</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Test strategies & techniques</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt=1 mr-2"></i> | |
| <span class="text-gray-700">Full practice tests with feedback</span> | |
| </li> | |
| </ul> | |
| <div class="mt-6"> | |
| <a href="#" class="text-blue-600 hover:text-blue-800 font-medium">Learn more →</a> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Course 3 --> | |
| <div class="course-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out"> | |
| <div class="px-6 py-4 bg-blue-50"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
| <i class="fas fa-trophy text-xl"></i> | |
| </div> | |
| <h3 class="mt-4 text-lg font-medium text-gray-900">IELTS Advanced</h3> | |
| <p class="mt-2 text-sm text-gray-500"> | |
| For high achievers (Target: 7.0-9.0) | |
| </p> | |
| </div> | |
| <div class="px-6 py-4"> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt=1 mr-2"></i> | |
| <span class="text-gray-700">Academic writing refinement</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt=1 mr-2"></i> | |
| <span class="text-gray-700">Native-level speaking practice</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt=1 mr-2"></i> | |
| <span class="text-gray-700">Expert coaching sessions</span> | |
| </li> | |
| </ul> | |
| <div class="mt-6"> | |
| <a href="#" class="text-blue-600 hover:text-blue-800 font-medium">Learn more →</a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Learning Path Section --> | |
| <div class="py-12 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Path to Success</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Your Personalized IELTS Journey | |
| </p> | |
| </div> | |
| <div class="mt-10"> | |
| <div class="relative"> | |
| <!-- Timeline line --> | |
| <div class="hidden sm:block absolute top-0 left-1/2 w-1 h-full bg-blue-200 transform -translate-x-1/2"></div> | |
| <!-- Timeline items --> | |
| <div class="relative space-y-8 sm:space-y-0 sm:grid sm:grid-cols-4 sm:gap-8"> | |
| <!-- Step 1 --> | |
| <div class="bg-white p-6 rounded-lg shadow-md text-center"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-full bg-blue-500 text-white mx-auto mb-4"> | |
| <span class="text-xl font-bold">1</span> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900">Assessment</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Take our placement test to determine your current level | |
| </p> | |
| </div> | |
| <!-- Step 2 --> | |
| <div class="bg-white p-6 rounded-lg shadow-md text-center"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-full bg-blue-500 text-white mx-auto mb-4"> | |
| <span class="text-xl font-bold">2</span> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900">Plan</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Receive a customized study plan based on your target score | |
| </p> | |
| </div> | |
| <!-- Step 3 --> | |
| <div class="bg-white p-6 rounded-lg shadow-md text-center"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-full bg-blue-500 text-white mx-auto mb-4"> | |
| <span class="text-xl font-bold">3</span> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900">Learn</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Engage with interactive lessons and practice materials | |
| </p> | |
| </div> | |
| <!-- Step 4 --> | |
| <div class="bg-white p-6 rounded-lg shadow-md text-center"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-full bg-blue-500 text-white mx-auto mb-4"> | |
| <span class="text-xl font-bold">4</span> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900">Achieve</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Take mock tests and refine your skills until test day | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Testimonials Section --> | |
| <div id="testimonials" class="py-12 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Testimonials</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| What Our Students Say | |
| </p> | |
| </div> | |
| <div class="mt-10 grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3"> | |
| <!-- Testimonial 1 --> | |
| <div class="testimonial-card bg-white p-6 rounded-lg shadow-md border border-gray-100"> | |
| <div class="flex items-center"> | |
| <img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Student testimonial"> | |
| <div class="ml-4"> | |
| <h4 class="text-lg font-medium text-gray-900">Sarah Johnson</h4> | |
| <p class="text-blue-600">High School Student</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-600 italic"> | |
| "I improved my score from 5.5 to 7.0 in just 3 months! The personalized feedback on my writing was incredibly helpful." | |
| </p> | |
| </div> | |
| <div class="mt-4 flex"> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| </div> | |
| </div> | |
| <!-- Testimonial 2 --> | |
| <div class="testimonial-card bg-white p-6 rounded-lg shadow-md border border-gray-100"> | |
| <div class="flex items-center"> | |
| <img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/45.jpg" alt="Student testimonial"> | |
| <div class="ml-4"> | |
| <h4 class="text-lg font-medium text-gray-900">David Kim</h4> | |
| <p class="text-blue-600">University Applicant</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-600 italic"> | |
| "The 1-on-1 speaking sessions gave me the confidence I needed. My speaking score went from 6.0 to 7.5!" | |
| </p> | |
| </div> | |
| <div class="mt-4 flex"> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| </div> | |
| </div> | |
| <!-- Testimonial 3 --> | |
| <div class="testimonial-card bg-white p-6 rounded-lg shadow-md border border-gray-100"> | |
| <div class="flex items-center"> | |
| <img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Student testimonial"> | |
| <div class="ml-4"> | |
| <h4 class="text-lg font-medium text-gray-900">Maria Rodriguez</h4> | |
| <p class="text-blue-600">Working Professional</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-600 italic"> | |
| "As a busy professional, the flexible schedule and TA support made all the difference. Achieved my target band 8!" | |
| </p> | |
| </div> | |
| <div class="mt-4 flex"> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star-half-alt text-yellow-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Team Section --> | |
| <div id="team" class="py-12 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Our Team</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Meet Our Experts | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> | |
| Certified IELTS instructors and dedicated support staff | |
| </p> | |
| </div> | |
| <div class="mt-10 grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-4"> | |
| <!-- Teacher 1 --> | |
| <div class="teacher-card bg-white p-6 rounded-lg shadow-md text-center transition duration-300 ease-in-out"> | |
| <img class="h-32 w-32 rounded-full mx-auto" src="https://randomuser.me/api/portraits/women/44.jpg" alt="Teacher"> | |
| <h3 class="mt-4 text-lg font-medium text-gray-900">Dr. Emily Wilson</h3> | |
| <p class="text-blue-600">IELTS Examiner (10+ years)</p> | |
| <p class="mt-2 text-sm text-gray-500"> | |
| Specializes in academic writing and reading strategies | |
| </p> | |
| <div class="mt-4 flex justify-center space-x-4"> | |
| <a href="#" class="text-blue-500 hover:text-blue-700"> | |
| <i class="fab fa-linkedin"></i> | |
| </a> | |
| <a href="#" class="text-blue-500 hover:text-blue-700"> | |
| <i class="fas fa-envelope"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Teacher 2 --> | |
| <div class="teacher-card bg-white p-6 rounded-lg shadow-md text-center transition duration-300 ease-in-out"> | |
| <img class="h-32 w-32 rounded-full mx-auto" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Teacher"> | |
| <h3 class="mt-4 text-lg font-medium text-gray-900">James Peterson</h3> | |
| <p class="text-blue-600">Speaking Specialist</p> | |
| <p class="mt-2 text-sm text-gray-500"> | |
| Former British Council examiner with accent training expertise | |
| </p> | |
| <div class="mt-4 flex justify-center space-x-4"> | |
| <a href="#" class="text-blue-500 hover:text-blue-700"> | |
| <i class="fab fa-linkedin"></i> | |
| </a> | |
| <a href="#" class="text-blue-500 hover:text-blue-700"> | |
| <i class="fas fa-envelope"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <!-- TA 1 --> | |
| <div class="teacher-card bg-white p-6 rounded-lg shadow-md text-center transition duration-300 ease-in-out"> | |
| <img class="h-32 w-32 rounded-full mx-auto" src="https://randomuser.me/api/portraits/women/63.jpg" alt="TA"> | |
| <h3 class="mt-4 text-lg font-medium text-gray-900">Sophia Chen</h3> | |
| <p class="text-blue-600">Head Teaching Assistant</p> | |
| <p class="mt-2 text-sm text-gray-500"> | |
| MA in TESOL, provides writing feedback and study tips | |
| </p> | |
| <div class="mt-4 flex justify-center space-x-4"> | |
| <a href="#" class="text-blue-500 hover:text-blue-700"> | |
| <i class="fab fa-linkedin"></i> | |
| </a> | |
| <a href="#" class="text-blue-500 hover:text-blue-700"> | |
| <i class="fas fa-envelope"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <!-- TA 2 --> | |
| <div class="teacher-card bg-white p-6 rounded-lg shadow-md text-center transition duration-300 ease-in-out"> | |
| <img class="h-32 w-32 rounded-full mx-auto" src="https://randomuser.me/api/portraits/men/75.jpg" alt="TA"> | |
| <h3 class="mt-4 text-lg font-medium text-gray-900">Michael Brown</h3> | |
| <p class="text-blue-600">Listening & Reading Specialist</p> | |
| <p class="mt-2 text-sm text-gray-500"> | |
| Creates practice materials and provides test strategies | |
| </p> | |
| <div class="mt-4 flex justify-center space-x-4"> | |
| <a href="#" class="text-blue-500 hover:text-blue-700"> | |
| <i class="fab fa-linkedin"></i> | |
| </a> | |
| <a href="#" class="text-blue-500 hover:text-blue-700"> | |
| <i class="fas fa-envelope"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- CTA Section --> | |
| <div class="gradient-bg"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8 lg:py-16"> | |
| <div class="lg:grid lg:grid-cols-2 lg:gap-8 lg:items-center"> | |
| <div> | |
| <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl"> | |
| Ready to start your IELTS journey? | |
| </h2> | |
| <p class="mt-3 max-w-3xl text-lg text-blue-100"> | |
| Join thousands of students who have achieved their target scores with our proven methods. | |
| </p> | |
| </div> | |
| <div class="mt-8 lg:mt-0"> | |
| <div class="inline-flex rounded-md shadow"> | |
| <a href="/register" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-blue-700 bg-white hover:bg-gray-50"> | |
| Get Started Today | |
| </a> | |
| </div> | |
| <div class="inline-flex ml-3 rounded-md shadow"> | |
| <a href="#demo" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-500 bg-opacity-60 hover:bg-opacity-70"> | |
| Watch Demo | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Footer --> | |
| <footer class="bg-gray-800"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
| <!-- About --> | |
| <div class="space-y-4"> | |
| <h3 class="text-white text-sm font-semibold tracking-wider uppercase">About</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Our Story</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Team</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Careers</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Press</a></li> | |
| </ul> | |
| </div> | |
| <!-- Resources --> | |
| <div class="space-y-4"> | |
| <h3 class="text-white text-sm font-semibold tracking-wider uppercase">Resources</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Blog</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">IELTS Tips</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Practice Tests</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Webinars</a></li> | |
| </ul> | |
| </div> | |
| <!-- Support --> | |
| <div class="space-y-4"> | |
| <h3 class="text-white text-sm font-semibold tracking-wider uppercase">Support</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Help Center</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Contact Us</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">FAQs</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">System Status</a></li> | |
| </ul> | |
| </div> | |
| <!-- Legal --> | |
| <div class="space-y-4"> | |
| <h3 class="text-white text-sm font-semibold tracking-wider uppercase">Legal</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Privacy</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Terms</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">Cookie Policy</a></li> | |
| <li><a href="#" class="text-gray-300 hover:text-white">GDPR</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="mt-8 pt-8 border-t border-gray-700"> | |
| <div class="md:flex md:items-center md:justify-between"> | |
| <div class="flex justify-center space-x-6 md:order-2"> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-youtube"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| </div> | |
| <div class="mt-8 md:mt-0 md:order-1"> | |
| <p class="text-center text-base text-gray-400"> | |
| © 2023 IELTS Mastery. All rights reserved. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
| const menu = document.getElementById('mobile-menu'); | |
| menu.classList.toggle('hidden'); | |
| }); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=aops02/ielts-platform" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |