Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 41cf0b9c70 | |||
| 84ebc1a8cf | |||
| 8b65f4c636 | |||
| 5041617d84 |
270
src/app/page.tsx
270
src/app/page.tsx
@@ -34,33 +34,19 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Programs",
|
||||
id: "programs",
|
||||
},
|
||||
name: "Programs", id: "programs"},
|
||||
{
|
||||
name: "Faculty",
|
||||
id: "faculty",
|
||||
},
|
||||
name: "Faculty", id: "faculty"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "testimonials"},
|
||||
{
|
||||
name: "News",
|
||||
id: "news",
|
||||
},
|
||||
name: "News", id: "news"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Bright Minds Academy"
|
||||
/>
|
||||
@@ -69,19 +55,14 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "rotated-rays-static",
|
||||
}}
|
||||
variant: "rotated-rays-static"}}
|
||||
logoText="Bright Minds Academy"
|
||||
description="Empowering students for a brighter future through exceptional education and innovative learning environments. Join our community of lifelong learners."
|
||||
buttons={[
|
||||
{
|
||||
text: "Discover Programs",
|
||||
href: "#programs",
|
||||
},
|
||||
text: "Discover Programs", href: "#programs"},
|
||||
{
|
||||
text: "Admissions",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Admissions", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/authentic-book-club-scene_23-2150104609.jpg"
|
||||
imageAlt="Students walking on campus with books"
|
||||
@@ -94,24 +75,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Our ",
|
||||
},
|
||||
type: "text", content: "Our "},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/lovely-girl-classroom_1098-3857.jpg",
|
||||
alt: "Students collaborating on a project",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/lovely-girl-classroom_1098-3857.jpg", alt: "Students collaborating on a project"},
|
||||
{
|
||||
type: "text",
|
||||
content: "Mission & Values",
|
||||
},
|
||||
type: "text", content: "Mission & Values"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "#programs",
|
||||
},
|
||||
text: "Learn More", href: "#programs"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -123,32 +95,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Comprehensive Curriculum",
|
||||
descriptions: [
|
||||
"Our academic programs are designed to challenge and inspire, fostering critical thinking and a love for learning.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-pen-light-bulb-card_23-2147865428.jpg",
|
||||
imageAlt: "Student studying with a laptop and books",
|
||||
},
|
||||
id: "f1", title: "Comprehensive Curriculum", descriptions: [
|
||||
"Our academic programs are designed to challenge and inspire, fostering critical thinking and a love for learning."],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-pen-light-bulb-card_23-2147865428.jpg", imageAlt: "Student studying with a laptop and books"},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Rich Extracurricular Activities",
|
||||
descriptions: [
|
||||
"From sports to arts and clubs, students have abundant opportunities to explore interests and develop new skills.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-women-playing-football_23-2149044704.jpg",
|
||||
imageAlt: "Kids playing soccer on a field",
|
||||
},
|
||||
id: "f2", title: "Rich Extracurricular Activities", descriptions: [
|
||||
"From sports to arts and clubs, students have abundant opportunities to explore interests and develop new skills."],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-women-playing-football_23-2149044704.jpg", imageAlt: "Kids playing soccer on a field"},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Modern Learning Facilities",
|
||||
descriptions: [
|
||||
"State-of-the-art classrooms, labs, and recreational areas provide an optimal environment for growth and discovery.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-studying-peacefully-library_23-2148844711.jpg",
|
||||
imageAlt: "Modern school laboratory",
|
||||
},
|
||||
id: "f3", title: "Modern Learning Facilities", descriptions: [
|
||||
"State-of-the-art classrooms, labs, and recreational areas provide an optimal environment for growth and discovery."],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-studying-peacefully-library_23-2148844711.jpg", imageAlt: "Modern school laboratory"},
|
||||
]}
|
||||
title="Our Pillars of Excellence"
|
||||
description="We foster holistic growth through a rich curriculum, diverse activities, and modern facilities designed for discovery and success."
|
||||
@@ -163,23 +120,14 @@ export default function LandingPage() {
|
||||
carouselMode="buttons"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
icon: Award,
|
||||
title: "Graduation Rate",
|
||||
value: "98%",
|
||||
},
|
||||
id: "m1", icon: Award,
|
||||
title: "Graduation Rate", value: "98%"},
|
||||
{
|
||||
id: "m2",
|
||||
icon: DollarSign,
|
||||
title: "Scholarship Awards",
|
||||
value: "$5M+",
|
||||
},
|
||||
id: "m2", icon: DollarSign,
|
||||
title: "Scholarship Awards", value: "$5M+"},
|
||||
{
|
||||
id: "m3",
|
||||
icon: Users,
|
||||
title: "Teacher-Student Ratio",
|
||||
value: "1:12",
|
||||
},
|
||||
id: "m3", icon: Users,
|
||||
title: "Teacher-Student Ratio", value: "1:12"},
|
||||
]}
|
||||
title="Achieving Beyond Expectations"
|
||||
description="Proudly showcasing our commitment to student success and academic excellence year after year."
|
||||
@@ -195,23 +143,11 @@ export default function LandingPage() {
|
||||
membersAnimation="slide-up"
|
||||
members={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Dr. Sarah Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/authentic-small-youthful-marketing-agency_23-2150167349.jpg",
|
||||
imageAlt: "Dr. Sarah Chen",
|
||||
},
|
||||
id: "t1", name: "Dr. Sarah Chen", imageSrc: "http://img.b2bpic.net/free-photo/authentic-small-youthful-marketing-agency_23-2150167349.jpg", imageAlt: "Dr. Sarah Chen"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Mr. David Lee",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-father-teaching-girl-paint_23-2148542852.jpg",
|
||||
imageAlt: "Mr. David Lee",
|
||||
},
|
||||
id: "t2", name: "Mr. David Lee", imageSrc: "http://img.b2bpic.net/free-photo/side-view-father-teaching-girl-paint_23-2148542852.jpg", imageAlt: "Mr. David Lee"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Ms. Emily White",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-working-company-strategy_329181-12087.jpg",
|
||||
imageAlt: "Ms. Emily White",
|
||||
},
|
||||
id: "t3", name: "Ms. Emily White", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-working-company-strategy_329181-12087.jpg", imageAlt: "Ms. Emily White"},
|
||||
]}
|
||||
memberVariant="card"
|
||||
/>
|
||||
@@ -225,25 +161,15 @@ export default function LandingPage() {
|
||||
author="Maria Sanchez, Parent"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/lovely-young-couple-hugging_1098-1538.jpg",
|
||||
alt: "Parent 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/lovely-young-couple-hugging_1098-1538.jpg", alt: "Parent 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/image-cheerful-joyful-young-female-smiling-sincerely-looking-directly-having-folded-arms-having-gap-teeth_176532-10224.jpg",
|
||||
alt: "Parent 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/image-cheerful-joyful-young-female-smiling-sincerely-looking-directly-having-folded-arms-having-gap-teeth_176532-10224.jpg", alt: "Parent 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/annoyed-young-caucasian-man-pulling-collar-his-turtleneck-sweater-looking-camera-with-one-eye-closed-isolated-orange-background-with-copy-space_141793-78073.jpg",
|
||||
alt: "Parent 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/annoyed-young-caucasian-man-pulling-collar-his-turtleneck-sweater-looking-camera-with-one-eye-closed-isolated-orange-background-with-copy-space_141793-78073.jpg", alt: "Parent 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-man-cartoon-style_23-2151134028.jpg",
|
||||
alt: "Parent 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-man-cartoon-style_23-2151134028.jpg", alt: "Parent 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-lady-wearing-sportswear-relaxing-outdoors_1262-18330.jpg",
|
||||
alt: "Satisfied Parent",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-lady-wearing-sportswear-relaxing-outdoors_1262-18330.jpg", alt: "Satisfied Parent"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -256,20 +182,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "What are the admission requirements?",
|
||||
content: "Admission requirements vary by grade level. Please visit our Admissions page for detailed information or contact our office directly.",
|
||||
},
|
||||
id: "q1", title: "What are the admission requirements?", content: "Admission requirements vary by grade level. Please visit our Admissions page for detailed information or contact our office directly."},
|
||||
{
|
||||
id: "q2",
|
||||
title: "What extracurricular activities are offered?",
|
||||
content: "We offer a wide range of activities including various sports, art classes, music programs, robotics club, debate team, and more. Explore our Programs section for details.",
|
||||
},
|
||||
id: "q2", title: "What extracurricular activities are offered?", content: "We offer a wide range of activities including various sports, art classes, music programs, robotics club, debate team, and more. Explore our Programs section for details."},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Do you offer scholarships or financial aid?",
|
||||
content: "Yes, Bright Minds Academy is committed to making quality education accessible. We offer several scholarship opportunities and financial aid programs based on need and merit.",
|
||||
},
|
||||
id: "q3", title: "Do you offer scholarships or financial aid?", content: "Yes, Bright Minds Academy is committed to making quality education accessible. We offer several scholarship opportunities and financial aid programs based on need and merit."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-kids-doing-homework_23-2148601434.jpg"
|
||||
imageAlt="Students raising hands in a classroom"
|
||||
@@ -291,38 +208,11 @@ export default function LandingPage() {
|
||||
description="Stay updated with recent announcements, student achievements, and upcoming events at Bright Minds Academy."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Events",
|
||||
title: "Annual Science Fair Showcases Innovation",
|
||||
excerpt: "Our students presented groundbreaking projects at this year's science fair, demonstrating remarkable creativity and scientific inquiry.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/little-girl-mixing-gouache-palette-table_23-2148037787.jpg",
|
||||
imageAlt: "Students at a science fair",
|
||||
authorName: "Principal John Doe",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-using-digital-tablet_1262-2358.jpg",
|
||||
date: "March 15, 2024",
|
||||
},
|
||||
id: "b1", category: "Academics", title: "Students Excel in National Math Competition", excerpt: "Our talented math team achieved top honors at the national competition, showcasing their dedication and problem-solving skills.", imageSrc: "http://img.b2bpic.net/free-photo/school-students-studying_23-2150338781.jpg", imageAlt: "Students celebrating math competition win", authorName: "Ms. Evelyn Reed", authorAvatar: "http://img.b2bpic.net/free-photo/pretty-curly-haired-woman-posing-against-beige-wall_23-2148785311.jpg", date: "May 1, 2024"},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Academics",
|
||||
title: "New Robotics Program Inspires Young Engineers",
|
||||
excerpt: "The launch of our advanced robotics program has sparked immense interest, equipping students with essential STEM skills for the future.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/school-office-supplies-white-background_23-2148200066.jpg",
|
||||
imageAlt: "Students building a robot",
|
||||
authorName: "Ms. Jane Smith",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/mature-business-manager-office_1098-21368.jpg",
|
||||
date: "February 28, 2024",
|
||||
},
|
||||
id: "b2", category: "Community", title: "Annual Charity Drive Exceeds Expectations", excerpt: "The Bright Minds community came together to raise record-breaking funds for local charities, demonstrating our commitment to service.", imageSrc: "http://img.b2bpic.net/free-photo/crop-people-volunteering-collecting-garbage_23-2149594589.jpg", imageAlt: "Volunteers collecting donations", authorName: "Mr. Michael Chen", authorAvatar: "http://img.b2bpic.net/free-photo/handsome-bearded-guy-posing-white-t-shirt_273609-20412.jpg", date: "April 18, 2024"},
|
||||
{
|
||||
id: "b3",
|
||||
category: "Arts",
|
||||
title: "Spring Concert Delights Audience with Talent",
|
||||
excerpt: "The school's annual spring concert featured spectacular performances by our talented musicians and vocalists, a true celebration of artistic expression.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-playing-drums-performance-local-event_23-2149188130.jpg",
|
||||
imageAlt: "School band performing on stage",
|
||||
authorName: "Mr. Alex Johnson",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-artist-playing-guitar_23-2149200007.jpg",
|
||||
date: "April 10, 2024",
|
||||
},
|
||||
id: "b3", category: "Innovation", title: "New STEM Lab Unveiled for Experiential Learning", excerpt: "Our state-of-the-art STEM lab offers students cutting-edge tools and resources for hands-on exploration in science, technology, engineering, and mathematics.", imageSrc: "http://img.b2bpic.net/free-photo/little-boy-robot-lab_23-2149168910.jpg", imageAlt: "Student experimenting in a science lab", authorName: "Dr. Olivia Davies", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-with-glasses_23-2149221239.jpg", date: "April 5, 2024"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -331,15 +221,14 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "rotated-rays-static-grid",
|
||||
}}
|
||||
tag="Get in Touch"
|
||||
title="Connect With Us"
|
||||
description="We're here to answer your questions and guide you through the enrollment process. Reach out today!"
|
||||
variant: "rotated-rays-static-grid"}}
|
||||
tag="Join Our Community"
|
||||
title="Stay Connected with Bright Minds Academy"
|
||||
description="Receive our latest news, event invitations, and educational insights directly in your inbox. Partner with us for a brighter future."
|
||||
tagAnimation="slide-up"
|
||||
inputPlaceholder="Enter your email address"
|
||||
buttonText="Send Inquiry"
|
||||
termsText="By sending an inquiry, you agree to our privacy policy and terms of service."
|
||||
inputPlaceholder="Your Email Address"
|
||||
buttonText="Subscribe Now"
|
||||
termsText="By subscribing, you agree to receive email communications from Bright Minds Academy and acknowledge our Privacy Policy."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -348,70 +237,43 @@ export default function LandingPage() {
|
||||
logoText="Bright Minds Academy"
|
||||
columns={[
|
||||
{
|
||||
title: "Programs",
|
||||
items: [
|
||||
title: "Programs", items: [
|
||||
{
|
||||
label: "Elementary",
|
||||
href: "#",
|
||||
},
|
||||
label: "Early Years", href: "#programs"},
|
||||
{
|
||||
label: "Middle School",
|
||||
href: "#",
|
||||
},
|
||||
label: "Primary Education", href: "#programs"},
|
||||
{
|
||||
label: "High School",
|
||||
href: "#",
|
||||
},
|
||||
label: "Secondary Education", href: "#programs"},
|
||||
{
|
||||
label: "Extracurriculars",
|
||||
href: "#programs",
|
||||
},
|
||||
label: "Special Programs", href: "#programs"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "About Us",
|
||||
items: [
|
||||
title: "About Us", items: [
|
||||
{
|
||||
label: "Our Mission",
|
||||
href: "#about",
|
||||
},
|
||||
label: "Our Story", href: "#about"},
|
||||
{
|
||||
label: "Faculty",
|
||||
href: "#faculty",
|
||||
},
|
||||
label: "Leadership", href: "#faculty"},
|
||||
{
|
||||
label: "Admissions",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Careers", href: "#contact"},
|
||||
{
|
||||
label: "Achievements",
|
||||
href: "#achievements",
|
||||
},
|
||||
label: "Impact", href: "#achievements"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Admissions", items: [
|
||||
{
|
||||
label: "News & Events",
|
||||
href: "#news",
|
||||
},
|
||||
label: "How to Apply", href: "#contact"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
label: "Tuition & Aid", href: "#contact"},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Visit Us", href: "#contact"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Request Info", href: "#contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Bright Minds Academy. All rights reserved."
|
||||
copyrightText="© 2024 Bright Minds Academy. All rights reserved. Empowering future leaders."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f5f4ef;
|
||||
--card: #dad6cd;
|
||||
--foreground: #2a2928;
|
||||
--primary-cta: #2a2928;
|
||||
--primary-cta-text: #f5f4ef;
|
||||
--secondary-cta: #ecebea;
|
||||
--secondary-cta-text: #2a2928;
|
||||
--accent: #ffffff;
|
||||
--background-accent: #c6b180;
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffffe6;
|
||||
--primary-cta: #e6e6e6;
|
||||
--primary-cta-text: #0a0a0a;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--secondary-cta-text: #ffffffe6;
|
||||
--accent: #737373;
|
||||
--background-accent: #737373;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user