7 Commits

Author SHA1 Message Date
228c5644c5 Update src/app/page.tsx 2026-05-08 14:17:42 +00:00
aa0ef40f19 Update src/app/courses/page.tsx 2026-05-08 14:17:41 +00:00
5d37552d22 Update src/app/contact/page.tsx 2026-05-08 14:17:41 +00:00
f5f61b8486 Update src/app/about/page.tsx 2026-05-08 14:17:40 +00:00
4e86fc88c4 Merge version_2 into main
Merge version_2 into main
2026-05-08 14:14:51 +00:00
075c9f1ca2 Update src/app/page.tsx 2026-05-08 14:14:48 +00:00
24c4e4ce7e Merge version_1 into main
Merge version_1 into main
2026-05-08 14:11:01 +00:00
4 changed files with 71 additions and 296 deletions

View File

@@ -26,24 +26,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Courses",
id: "/courses",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Courses", id: "/courses" },
{ name: "Contact", id: "/contact" },
]}
brandName="Wisdom Science & Maths"
brandName="Academy Excellence"
/>
</div>
@@ -52,21 +40,9 @@ export default function LandingPage() {
useInvertedBackground={true}
title="About Our Academy"
metrics={[
{
icon: GraduationCap,
label: "Years Experience",
value: "10+",
},
{
icon: Users,
label: "Active Students",
value: "200+",
},
{
icon: BookOpen,
label: "Subjects",
value: "8",
},
{ icon: GraduationCap, label: "Years Experience", value: "10+" },
{ icon: Users, label: "Active Students", value: "200+" },
{ icon: BookOpen, label: "Subjects", value: "8" },
]}
metricsAnimation="slide-up"
/>
@@ -78,29 +54,7 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
members={[
{
id: "t1",
name: "Dr. Silva",
role: "Senior Science Lead",
description: "Experienced Science tutor.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-making-hand-gestures_23-2148938303.jpg",
},
{
id: "t2",
name: "Ms. Perera",
role: "Math Head",
description: "Expert Mathematics teacher.",
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-cheerful-african-woman-student-smiling-laughing-sitting-cafe-books-magazines-lying-table-learning-education_176420-12412.jpg",
},
{
id: "t3",
name: "Mr. Fernando",
role: "Physics Lead",
description: "O/L revision specialist.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-doctor-wearing-lab-coat_23-2149551157.jpg",
},
]}
members={[]}
title="Our Expert Teachers"
description="Learn from the best educators in the field."
/>
@@ -109,32 +63,10 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Courses",
href: "/courses",
},
],
},
{
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "Schedule",
href: "#",
},
],
},
{ items: [{ label: "About", href: "/about" }, { label: "Courses", href: "/courses" }] },
{ items: [{ label: "Contact Us", href: "/contact" }] }
]}
logoText="Wisdom Science & Maths"
logoText="Academy Excellence"
/>
</div>
</ReactLenis>

View File

@@ -25,38 +25,23 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Courses",
id: "/courses",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Courses", id: "/courses" },
{ name: "Contact", id: "/contact" },
]}
brandName="Wisdom Science & Maths"
brandName="Academy Excellence"
/>
</div>
<div id="contact-body" data-section="contact-body">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
title="Contact Us"
description="1st Floor, Buthgamuwa Road, Angoda, Sri Lanka. Call us: 077 111 3391"
imageSrc="http://img.b2bpic.net/free-photo/girl-near-microscope-observing-teacher_259150-60352.jpg"
mediaAnimation="slide-up"
tag="Get in touch"
description="Reach out for inquiries."
buttons={[]}
tag="Support"
/>
</div>
@@ -64,58 +49,19 @@ export default function LandingPage() {
<FaqDouble
textboxLayout="default"
useInvertedBackground={true}
faqs={[
{
id: "q1",
title: "Do you provide notes?",
content: "Yes, comprehensive notes are provided for all subjects.",
},
{
id: "q2",
title: "What mediums do you cover?",
content: "We cover both English and Sinhala mediums.",
},
{
id: "q3",
title: "Are there demo classes?",
content: "Yes, we encourage students to attend a demo session.",
},
]}
faqs={[]}
title="Common Questions"
faqsAnimation="slide-up"
description="Find answers to frequently asked questions about our programs."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Courses",
href: "/courses",
},
],
},
{
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "Schedule",
href: "#",
},
],
},
{ items: [{ label: "About", href: "/about" }, { label: "Courses", href: "/courses" }] },
{ items: [{ label: "Contact Us", href: "/contact" }] }
]}
logoText="Wisdom Science & Maths"
logoText="Academy Excellence"
/>
</div>
</ReactLenis>

View File

@@ -25,16 +25,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home", id: "/"},
{
name: "About", id: "/about"},
{
name: "Courses", id: "/courses"},
{
name: "Contact", id: "/contact"},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Courses", id: "/courses" },
{ name: "Contact", id: "/contact" },
]}
brandName="Wisdom Science & Maths"
brandName="Academy Excellence"
/>
</div>
@@ -44,22 +40,9 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "p1", name: "Grade 6-11 Science", price: "Enrolling", imageSrc: "http://img.b2bpic.net/free-photo/group-three-young-good-looking-multi-ethnic-students-sitting-university-library-dark-skinned-guy-looking-back-his-friend-reading-article-light-haired-girl-with-happy-face_176420-8301.jpg"},
{
id: "p2", name: "Grade 6-11 Math", price: "Enrolling", imageSrc: "http://img.b2bpic.net/free-photo/young-students-posing-camera_23-2147663796.jpg"},
{
id: "p3", name: "O/L Revision", price: "Enrolling", imageSrc: "http://img.b2bpic.net/free-photo/excited-colleagues-discussing-some-questions-library_74855-1834.jpg"},
{
id: "p4", name: "English Medium", price: "Enrolling", imageSrc: "http://img.b2bpic.net/free-photo/room-interior-design_23-2148899442.jpg"},
{
id: "p5", name: "Sinhala Medium", price: "Enrolling", imageSrc: "http://img.b2bpic.net/free-photo/people-working-tech-brand-together_23-2150966126.jpg"},
{
id: "p6", name: "Advanced Science", price: "Enrolling", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-teacher-wearing-glasses-with-hourglass-looking-it-surprised-preparing-lesson-sitting-school-desk-front-blackboard-classroom_141793-62370.jpg"},
]}
products={[]}
title="Our Programs"
description="Curated programs for academic excellence."
description="Curated academic paths."
/>
</div>
@@ -68,50 +51,19 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
description="What our students say about us."
testimonials={[
{
id: "1", name: "Sarah", handle: "@student", testimonial: "Best tuition centre in the region!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/good-looking-cute-girl-trendy-yellow-overalls-t-shirt-smiling-broadly-with-joyful-happy-expression_176420-27053.jpg"},
{
id: "2", name: "John", handle: "@student", testimonial: "Changed my math marks significantly.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-pretty-girl-against-white-background_23-2147839610.jpg"},
{
id: "3", name: "Mary", handle: "@student", testimonial: "Excellent O/L revision programs.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/image-college-student-man-holding-notebooks_197531-33462.jpg"},
{
id: "4", name: "Tom", handle: "@student", testimonial: "Highly recommended teachers.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/content-stylish-student-posing-table_23-2147666655.jpg"},
{
id: "5", name: "Jane", handle: "@student", testimonial: "Small groups helped me grow.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-striped-shirt-eyeglasses_273609-13227.jpg"},
]}
showRating={true}
title="Student Success Stories"
description=""
testimonials={[]}
title="Student Success"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About", href: "/about"},
{
label: "Courses", href: "/courses"},
],
},
{
items: [
{
label: "Contact Us", href: "/contact"},
{
label: "Schedule", href: "#"},
],
},
{ items: [{ label: "About", href: "/about" }, { label: "Courses", href: "/courses" }] },
{ items: [{ label: "Contact Us", href: "/contact" }] }
]}
logoText="Wisdom Science & Maths"
logoText="Academy Excellence"
/>
</div>
</ReactLenis>

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
@@ -28,45 +28,28 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home", id: "/"},
{
name: "About", id: "/about"},
{
name: "Courses", id: "/courses"},
{
name: "Contact", id: "/contact"},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Courses", id: "/courses" },
{ name: "Contact", id: "/contact" },
]}
brandName="Wisdom Science & Maths"
brandName="Academy Excellence"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
background={{
variant: "gradient-bars"}}
title="Build Your Future with Excellence in Science & Mathematics"
description="English Medium & Sinhala Medium Classes for Grade 6 to O/L. Enroll today for top-tier academic coaching."
<HeroBillboardTestimonial
title="Unlock Your Potential with Elite Coaching"
description="Master Science and Mathematics with our proven curriculum. Empowering students from Grade 6 to O/L in both English and Sinhala mediums."
background={{ variant: "sparkles-gradient" }}
testimonials={[
{ name: "Aravinda P.", handle: "@top_scorer", testimonial: "The personalized attention helped me secure an A in Maths.", rating: 5 },
{ name: "Samadhi K.", handle: "@science_wiz", testimonial: "The science concepts are finally crystal clear!", rating: 5 }
]}
buttons={[
{
text: "Enroll Now", href: "/contact"},
{
text: "Contact Us", href: "/contact"},
]}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/creative-students-brainstorming-new-project_23-2147664141.jpg", imageAlt: "modern classroom science mathematics education"},
{
imageSrc: "http://img.b2bpic.net/free-photo/group-college-students-using-laptop-classroom_637285-8826.jpg", imageAlt: "modern classroom science mathematics education"},
{
imageSrc: "http://img.b2bpic.net/free-photo/business-colleagues-banner-concept-with-copy-space_23-2149601482.jpg", imageAlt: "modern classroom science mathematics education"},
{
imageSrc: "http://img.b2bpic.net/free-photo/child-student-learning-school_23-2149511071.jpg", imageAlt: "modern classroom science mathematics education"},
{
imageSrc: "http://img.b2bpic.net/free-photo/girl-doing-homework-school_23-2147854115.jpg", imageAlt: "modern classroom science mathematics education"},
{
imageSrc: "http://img.b2bpic.net/free-photo/girls-learning-more-about-chemistry-class_23-2149068368.jpg", imageAlt: "modern classroom science mathematics education"},
{ text: "Enroll Now", href: "/contact" }
]}
imageSrc="http://img.b2bpic.net/free-photo/young-students-brainstorming-with-teacher_23-2147864634.jpg"
/>
</div>
@@ -76,28 +59,10 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
features={[
{
id: "f1", title: "Experienced Teachers", author: "Expert Faculty", description: "Subject masters dedicated to your success.", tags: [
"Experienced", "Qualified"],
imageSrc: "http://img.b2bpic.net/free-photo/light-bulb-near-back-school-writing_23-2147864634.jpg"},
{
id: "f2", title: "Small Group Classes", author: "Individual Focus", description: "Personalized learning paths for everyone.", tags: [
"Personalized", "Small Groups"],
imageSrc: "http://img.b2bpic.net/free-photo/abstract-creation-made-from-3d-geometric-shapes_23-2150829267.jpg"},
{
id: "f3", title: "Exam-Focused", author: "Results Driven", description: "Strategy-based revision for O/Ls.", tags: [
"Focused", "Revision"],
imageSrc: "http://img.b2bpic.net/free-vector/modern-education-elements-background_23-2147748628.jpg"},
{
id: "f4", title: "Modern Resources", author: "Smart Learning", description: "Latest study materials and tools.", tags: [
"Resourceful", "Tech-Enabled"],
imageSrc: "http://img.b2bpic.net/free-photo/creative-composition-with-pins_23-2147654566.jpg"},
{
id: "f5", title: "Flexible Scheduling", author: "Convenient", description: "Classes arranged to suit your busy day.", tags: [
"Flexible", "Accessible"],
imageSrc: "http://img.b2bpic.net/free-photo/man-with-magnifying-glass-with-risograph-effect-remixed-media_53876-126906.jpg"},
{ id: "f1", title: "Experienced Faculty", author: "Top Educators", description: "Teachers with a decade of proven success.", tags: ["Qualified"], imageSrc: "http://img.b2bpic.net/free-photo/light-bulb-near-back-school-writing_23-2147864634.jpg" },
{ id: "f2", title: "Small Group Focus", author: "Personalized", description: "Individual guidance for every student.", tags: ["Focused"], imageSrc: "http://img.b2bpic.net/free-photo/abstract-creation-made-from-3d-geometric-shapes_23-2150829267.jpg" }
]}
title="Why Wisdom Tuition Centre?"
title="Why Choose Us?"
description="Excellence in every lesson."
/>
</div>
@@ -105,15 +70,11 @@ export default function LandingPage() {
<div id="metrics" data-section="metrics">
<MetricCardFourteen
useInvertedBackground={false}
title="Proven Track Record"
tag="Excellence"
title="Proven Results"
tag="Achievements"
metrics={[
{
id: "m1", value: "95%", description: "Pass Rate"},
{
id: "m2", value: "500+", description: "Students Enrolled"},
{
id: "m3", value: "15+", description: "Expert Tutors"},
{ id: "m1", value: "95%", description: "Success Rate" },
{ id: "m2", value: "500+", description: "Happy Students" }
]}
metricsAnimation="slide-up"
/>
@@ -124,9 +85,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
title="Trusted by Families"
description="We are proud to serve the community for over a decade."
names={[
"Island Toppers", "Math Olympians", "Academic Excellence Award", "Science Fair Winners", "High Achievers Hub"]}
names={["Top Island Ranks", "Math Olympians", "O/L Success Achievers"]}
/>
</div>
@@ -136,32 +95,18 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
testimonials={[]}
title="Testimonials"
description="What our students say."
title="Student Success"
description="Real stories from our students."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About", href: "/about"},
{
label: "Courses", href: "/courses"},
],
},
{
items: [
{
label: "Contact Us", href: "/contact"},
{
label: "Schedule", href: "#"},
],
},
{ items: [{ label: "About", href: "/about" }, { label: "Courses", href: "/courses" }] },
{ items: [{ label: "Contact Us", href: "/contact" }] }
]}
logoText="Wisdom Science & Maths"
logoText="Academy Excellence"
/>
</div>
</ReactLenis>