Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 30148d2bf8 | |||
| 6d9eeb675c | |||
| 38a13a6d59 | |||
| fd47b3d006 | |||
| 7163a72962 |
231
src/app/page.tsx
231
src/app/page.tsx
@@ -5,11 +5,10 @@ import ReactLenis from "lenis/react";
|
|||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -31,68 +30,31 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Modules",
|
name: "Features", id: "features"},
|
||||||
id: "modules",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Results",
|
name: "Success", id: "success"},
|
||||||
id: "results",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Success",
|
name: "Contact", id: "contact"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="IELTS Academy"
|
brandName="IELTS Academy"
|
||||||
button={{
|
button={{
|
||||||
text: "Book Demo",
|
text: "Book Demo", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardCarousel
|
<HeroBillboardCarousel
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
title="Unlock Your Global Future with IELTS 8.0+"
|
title="Unlock Your Global Future with IELTS 8.0+"
|
||||||
description="Achieve your dream score with expert guidance, precision strategies, and proven success methodology."
|
description="Achieve your dream score with expert guidance, precision strategies, and proven success methodology."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Book a Free Demo",
|
text: "Book a Free Demo", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/two-young-good-looking-multi-ethnic-female-students-talking-about-graduation-project-making-notes-notebooks-looking-information-books_176420-8286.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/two-young-good-looking-multi-ethnic-female-students-talking-about-graduation-project-making-notes-notebooks-looking-information-books_176420-8286.jpg", imageAlt: "IELTS success students"},
|
||||||
imageAlt: "IELTS success students",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-bookstore-date_23-2150396441.jpg",
|
|
||||||
imageAlt: "IELTS success students",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-redhead-female-model-ginger-girl-with-digital-tablet-sits-stairs-outdoors-reads-her_1258-196335.jpg",
|
|
||||||
imageAlt: "IELTS success students",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/enthusiastic-young-woman-glasses-teacher-celebrating-raising-hand-up-cheering-tirumphing-with_1258-197338.jpg",
|
|
||||||
imageAlt: "IELTS success students",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/neighborhood-life-enjoyed-by-young-adult_23-2149402065.jpg",
|
|
||||||
imageAlt: "IELTS success students",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/surprised-young-slavic-student-girl-with-headphones-wearing-backpack-stands-with-raised-fist-holds-notebook-pen-looking-side_141793-99764.jpg",
|
|
||||||
imageAlt: "IELTS success students",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -103,120 +65,42 @@ export default function LandingPage() {
|
|||||||
title="Excellence in Academic Preparation"
|
title="Excellence in Academic Preparation"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Explore Success Story",
|
text: "Get Started", href: "#contact"},
|
||||||
href: "#results",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="modules" data-section="modules">
|
<div id="features" data-section="features">
|
||||||
<FeatureCardEight
|
<FeatureCardEight
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Listening",
|
title: "Expert Tutors", description: "Learn from certified examiners with years of experience.", imageSrc: "http://img.b2bpic.net/free-photo/teacher-explaining-student_23-2148731388.jpg", imageAlt: "Expert Tutors"},
|
||||||
description: "Sharpen your focus and comprehension.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/show-ear-listen-hear-deaf-sign_53876-121483.jpg",
|
|
||||||
imageAlt: "Listening",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Reading",
|
title: "Mock Exams", description: "Simulate real test conditions with timed practice.", imageSrc: "http://img.b2bpic.net/free-photo/student-taking-test_23-2148560594.jpg", imageAlt: "Mock Exams"},
|
||||||
description: "Master speed and precision.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/reading-flat-set_1284-4136.jpg",
|
|
||||||
imageAlt: "Reading",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Writing",
|
title: "Personalized Feedback", description: "Targeted improvements based on your individual performance.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-writing-paper_23-2148782299.jpg", imageAlt: "Personalized Feedback"},
|
||||||
description: "Construct high-scoring essays.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/office-supplies-concept-with-icons-wooden-cubes-stationery-set-flat-lay_176474-9485.jpg",
|
|
||||||
imageAlt: "Writing",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Speaking",
|
|
||||||
description: "Speak with confidence and fluency.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/blank-white-speech-with-shadow-blue-background_23-2147948725.jpg",
|
|
||||||
imageAlt: "Speaking",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Core IELTS Modules"
|
title="Why Choose Us"
|
||||||
description="Comprehensive resources tailored for mastery."
|
description="Comprehensive support to help you achieve your target score."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="results" data-section="results">
|
<div id="success" data-section="success">
|
||||||
<MetricCardTwo
|
<TestimonialCardTwelve
|
||||||
animationType="depth-3d"
|
cardTitle="Success Wall"
|
||||||
textboxLayout="split"
|
cardTag="Student Results"
|
||||||
gridVariant="uniform-all-items-equal"
|
cardAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
|
||||||
{
|
|
||||||
id: "m1",
|
|
||||||
value: "8.5",
|
|
||||||
description: "Highest Band Achieved",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "m2",
|
|
||||||
value: "95%",
|
|
||||||
description: "Students with Band 7.5+",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "m3",
|
|
||||||
value: "1200+",
|
|
||||||
description: "Successful Alumni",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
title="The Wall of Success"
|
|
||||||
description="Consistently producing top-tier Band scores."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
|
||||||
<TestimonialCardSix
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="split"
|
|
||||||
useInvertedBackground={true}
|
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "cert-1", name: "Band 8.5 Achieved", imageSrc: "http://img.b2bpic.net/free-photo/certificate-design_53876-138357.jpg?_wi=1"},
|
||||||
name: "Amina Khan",
|
|
||||||
handle: "Band 8.5",
|
|
||||||
testimonial: "The guidance here is unmatched. I finally crossed the 8.0 mark!",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-thoughtful-woman-dressed-outerwear-holds-modern-tablet-notebook-focused-away-walks-outside_273609-55797.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "cert-2", name: "Band 8.0 Achieved", imageSrc: "http://img.b2bpic.net/free-photo/certificate-design_53876-138357.jpg?_wi=2"},
|
||||||
name: "Wei Chen",
|
|
||||||
handle: "Band 8.0",
|
|
||||||
testimonial: "Practice materials were precise and highly reflective of actual exams.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/excited-young-student-girl-wearing-bandana-backpack-holding-note-pads-looking-camera-putting-one-note-pads-head-isolated-blue-background_141793-134481.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "cert-3", name: "Band 8.0 Achieved", imageSrc: "http://img.b2bpic.net/free-photo/certificate-design_53876-138357.jpg?_wi=3"}
|
||||||
name: "Sarah Miller",
|
|
||||||
handle: "Band 8.0",
|
|
||||||
testimonial: "The writing feedback really refined my sentence structure.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-laptop_23-2149915909.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
name: "David Okafor",
|
|
||||||
handle: "Band 7.5",
|
|
||||||
testimonial: "Speaking mock exams were the turning point for me.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-businesswoman-smiling-happy-standing-city_839833-14128.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
name: "Elena Rossi",
|
|
||||||
handle: "Band 8.5",
|
|
||||||
testimonial: "I couldn't have achieved this without the constant support.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-glasses-portrait_1262-1461.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Student Success Stories"
|
|
||||||
description="Hear from those who achieved their goals."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -226,20 +110,9 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "q1",
|
id: "q1", title: "How long are the courses?", content: "Our courses typically run for 8 weeks."},
|
||||||
title: "How long are the courses?",
|
|
||||||
content: "Our courses typically run for 8 weeks.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q2",
|
id: "q2", title: "Are mock exams included?", content: "Yes, unlimited full-scale mock exams are provided."},
|
||||||
title: "Are mock exams included?",
|
|
||||||
content: "Yes, unlimited full-scale mock exams are provided.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "q3",
|
|
||||||
title: "Is feedback personalized?",
|
|
||||||
content: "Yes, all essays and speaking assessments receive detailed, personalized feedback.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Everything you need to know about our academy."
|
description="Everything you need to know about our academy."
|
||||||
@@ -251,63 +124,39 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
text="Ready to begin your journey? Contact us today to schedule your demo or ask any questions."
|
text="Ready to begin your journey? Contact us today to schedule your demo or ask any questions."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Register Now",
|
text: "Get in Touch", href: "mailto:support@ieltsacademy.com"},
|
||||||
href: "#contact-form",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterBaseReveal
|
||||||
|
logoText="IELTS Academy"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Navigate",
|
title: "Academy", items: [
|
||||||
items: [
|
{ label: "Courses", href: "#features" },
|
||||||
{
|
{ label: "Success", href: "#success" },
|
||||||
label: "Modules",
|
|
||||||
href: "#modules",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Success",
|
|
||||||
href: "#testimonials",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Academy",
|
title: "Contact", items: [
|
||||||
items: [
|
{ label: "Email: info@ieltsacademy.com", href: "mailto:info@ieltsacademy.com" },
|
||||||
{
|
{ label: "Phone: +1 234 567 890", href: "tel:+1234567890" },
|
||||||
label: "Contact Us",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Privacy Policy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Socials",
|
title: "Social", items: [
|
||||||
items: [
|
{ label: "Instagram", href: "https://instagram.com" },
|
||||||
{
|
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||||
label: "Instagram",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "LinkedIn",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
bottomLeftText="© 2024 IELTS Excellence Academy. All rights reserved."
|
copyrightText="© 2024 IELTS Excellence Academy. All rights reserved."
|
||||||
bottomRightText="Academic Excellence Pathway"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #050012;
|
--background: #ffffff;
|
||||||
--card: #040121;
|
--card: #f9f9f9;
|
||||||
--foreground: #f0e6ff;
|
--foreground: #001122;
|
||||||
--primary-cta: #c89bff;
|
--primary-cta: #15479c;
|
||||||
--primary-cta-text: #050012;
|
--primary-cta-text: #050012;
|
||||||
--secondary-cta: #1d123b;
|
--secondary-cta: #FFD700;
|
||||||
--secondary-cta-text: #f0e6ff;
|
--secondary-cta-text: #f0e6ff;
|
||||||
--accent: #684f7b;
|
--accent: #15479c;
|
||||||
--background-accent: #65417c;
|
--background-accent: #f9f9f9;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user