Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8554f87056 | |||
| d441f8d62a | |||
| 1653ce9eda |
111
src/app/file/page.tsx
Normal file
111
src/app/file/page.tsx
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
|
||||||
|
export default function FilePage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="hover-bubble"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="mediumLarge"
|
||||||
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
|
background="noise"
|
||||||
|
cardStyle="solid"
|
||||||
|
primaryButtonStyle="radial-glow"
|
||||||
|
secondaryButtonStyle="solid"
|
||||||
|
headingFontWeight="extrabold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
navItems={[
|
||||||
|
{
|
||||||
|
name: "Home", id: "#home"},
|
||||||
|
{
|
||||||
|
name: "About", id: "#about"},
|
||||||
|
{
|
||||||
|
name: "Academics", id: "#academics"},
|
||||||
|
{
|
||||||
|
name: "Admissions", id: "#admissions"},
|
||||||
|
{
|
||||||
|
name: "Student Life", id: "#student-life"},
|
||||||
|
{
|
||||||
|
name: "Tuition", id: "#tuition"},
|
||||||
|
{
|
||||||
|
name: "File", id: "/file"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Contact", id: "#contact-us"},
|
||||||
|
]}
|
||||||
|
logoSrc="http://img.b2bpic.net/free-photo/delaware-flag-with-banner_187299-35477.jpg"
|
||||||
|
logoAlt="Orlando Private School Logo"
|
||||||
|
brandName="Orlando Private School"
|
||||||
|
button={{
|
||||||
|
text: "Schedule a Tour", href: "/contact-us"}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="file-content" data-section="file-content" className="py-40">
|
||||||
|
<ContactText
|
||||||
|
useInvertedBackground={true}
|
||||||
|
background={{
|
||||||
|
variant: "rotated-rays-static-grid"}}
|
||||||
|
text="This is a dedicated page for files you can access."
|
||||||
|
buttons={[
|
||||||
|
{
|
||||||
|
text: "Download File", href: "#", onClick: () => alert("Download initiated!")
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBase
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Quick Links", items: [
|
||||||
|
{
|
||||||
|
label: "Home", href: "#home"},
|
||||||
|
{
|
||||||
|
label: "About Us", href: "#about"},
|
||||||
|
{
|
||||||
|
label: "Academics", href: "#academics"},
|
||||||
|
{
|
||||||
|
label: "Admissions", href: "#admissions"},
|
||||||
|
{
|
||||||
|
label: "Tuition", href: "#tuition"},
|
||||||
|
{
|
||||||
|
label: "File", href: "/file"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Contact", href: "#contact-us"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Contact Us", items: [
|
||||||
|
{
|
||||||
|
label: "4607 Pinehills Orlando Fl 32808", href: "https://www.google.com/maps/search/4607+Pinehills+Orlando+Fl+32808"},
|
||||||
|
{
|
||||||
|
label: "info@orlandoprivateschool.com", href: "mailto:info@orlandoprivateschool.com"},
|
||||||
|
{
|
||||||
|
label: "(407) 555-1234", href: "tel:+14075551234"},
|
||||||
|
{
|
||||||
|
label: "Office Hours: Mon-Fri, 8 AM - 4 PM", href: "#"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
logoSrc="http://img.b2bpic.net/free-photo/delaware-flag-with-banner_187299-35477.jpg"
|
||||||
|
logoAlt="Orlando Private School Logo"
|
||||||
|
logoText="Orlando Private School"
|
||||||
|
copyrightText="© 2024 Orlando Private School. All rights reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
351
src/app/page.tsx
351
src/app/page.tsx
@@ -22,10 +22,10 @@ export default function LandingPage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="mediumLarge"
|
contentWidth="mediumLarge"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="fluid"
|
background="noise"
|
||||||
cardStyle="gradient-mesh"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="radial-glow"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="extrabold"
|
headingFontWeight="extrabold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
@@ -33,86 +33,56 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "#home"},
|
||||||
id: "#home",
|
{
|
||||||
|
name: "About", id: "#about"},
|
||||||
|
{
|
||||||
|
name: "Academics", id: "#academics"},
|
||||||
|
{
|
||||||
|
name: "Admissions", id: "#admissions"},
|
||||||
|
{
|
||||||
|
name: "Student Life", id: "#student-life"},
|
||||||
|
{
|
||||||
|
name: "Tuition", id: "#tuition"},
|
||||||
|
{
|
||||||
|
name: "File", id: "/file"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "Contact", id: "#contact-us"},
|
||||||
id: "#about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Academics",
|
|
||||||
id: "#academics",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Admissions",
|
|
||||||
id: "#admissions",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Student Life",
|
|
||||||
id: "#student-life",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Tuition",
|
|
||||||
id: "#tuition",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "#contact-us",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
logoSrc="http://img.b2bpic.net/free-photo/delaware-flag-with-banner_187299-35477.jpg"
|
logoSrc="http://img.b2bpic.net/free-photo/delaware-flag-with-banner_187299-35477.jpg"
|
||||||
logoAlt="Orlando Private School Logo"
|
logoAlt="Orlando Private School Logo"
|
||||||
brandName="Orlando Private School"
|
brandName="Orlando Private School"
|
||||||
button={{
|
button={{
|
||||||
text: "Schedule a Tour",
|
text: "Schedule a Tour", href: "#contact-us"}}
|
||||||
href: "#contact-us",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="home" data-section="home">
|
<div id="home" data-section="home">
|
||||||
<HeroBillboardGallery
|
<HeroBillboardGallery
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
title="Home of the Lions where Education is Excellence at Orlando Private School"
|
||||||
title="Inspiring Growth, Building Futures at Orlando Private School"
|
|
||||||
description="At Orlando Private School, we are dedicated to fostering a rich educational environment where every student can excel academically, develop strong character, and discover their full potential. Join a community that values personalized learning and holistic development."
|
description="At Orlando Private School, we are dedicated to fostering a rich educational environment where every student can excel academically, develop strong character, and discover their full potential. Join a community that values personalized learning and holistic development."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule a Tour",
|
text: "Schedule a Tour", href: "#contact-us"},
|
||||||
href: "#contact-us",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/teacher-with-children-looking-screen-lesson_259150-60331.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/teacher-with-children-looking-screen-lesson_259150-60331.jpg", imageAlt: "Happy students collaborating on a project in a modern classroom"},
|
||||||
imageAlt: "Happy students collaborating on a project in a modern classroom",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/college-mates-studying-together_23-2149038408.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/college-mates-studying-together_23-2149038408.jpg", imageAlt: "Students engaged in a science experiment with a teacher"},
|
||||||
imageAlt: "Students engaged in a science experiment with a teacher",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/women-analyzing-creative-projects_482257-121336.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/women-analyzing-creative-projects_482257-121336.jpg", imageAlt: "Joyful children playing together on a school playground"},
|
||||||
imageAlt: "Joyful children playing together on a school playground",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-kids-outdoors_52683-94816.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-kids-outdoors_52683-94816.jpg", imageAlt: "Students reading in a well-lit school library"},
|
||||||
imageAlt: "Students reading in a well-lit school library",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-families-retro-style_23-2150440109.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/modern-families-retro-style_23-2150440109.jpg", imageAlt: "Children participating in an outdoor nature education activity"},
|
||||||
imageAlt: "Children participating in an outdoor nature education activity",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-taking-photo-her-friends-group-young-friends-sitting-guardrail-near-road-travel-hiking-adventure-concept_613910-18885.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/girl-taking-photo-her-friends-group-young-friends-sitting-guardrail-near-road-travel-hiking-adventure-concept_613910-18885.jpg", imageAlt: "Diverse group of students in a technology class"},
|
||||||
imageAlt: "Diverse group of students in a technology class",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -125,20 +95,11 @@ export default function LandingPage() {
|
|||||||
description="Discover the distinctive advantages that make our school the preferred choice for parents seeking exceptional education and holistic development for their children."
|
description="Discover the distinctive advantages that make our school the preferred choice for parents seeking exceptional education and holistic development for their children."
|
||||||
accordionItems={[
|
accordionItems={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Personalized Attention", content: "Experience the benefit of small class sizes where every student receives individual support and tailored instruction, ensuring their unique learning needs are met and celebrated. Our dedicated educators are committed to fostering a close-knit learning environment."},
|
||||||
title: "Personalized Attention",
|
|
||||||
content: "Experience the benefit of small class sizes where every student receives individual support and tailored instruction, ensuring their unique learning needs are met and celebrated. Our dedicated educators are committed to fostering a close-knit learning environment.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Strong Academics", content: "Engage with a rigorous, future-ready curriculum designed to challenge and inspire. We cultivate critical thinking, creativity, and a lifelong love for learning, preparing students for success in higher education and beyond."},
|
||||||
title: "Strong Academics",
|
|
||||||
content: "Engage with a rigorous, future-ready curriculum designed to challenge and inspire. We cultivate critical thinking, creativity, and a lifelong love for learning, preparing students for success in higher education and beyond.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Integrity & Character", content: "Beyond academics, we focus on developing strong character, integrity, and leadership qualities. Our values-based approach instills respect, responsibility, and empathy, shaping students into compassionate and ethical leaders."},
|
||||||
title: "Integrity & Character",
|
|
||||||
content: "Beyond academics, we focus on developing strong character, integrity, and leadership qualities. Our values-based approach instills respect, responsibility, and empathy, shaping students into compassionate and ethical leaders.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-vector/education-concept-flat-icons-set_23-2147493130.jpg"
|
imageSrc="http://img.b2bpic.net/free-vector/education-concept-flat-icons-set_23-2147493130.jpg"
|
||||||
imageAlt="Three icons representing academics, personalized attention, and character development"
|
imageAlt="Three icons representing academics, personalized attention, and character development"
|
||||||
@@ -156,17 +117,11 @@ export default function LandingPage() {
|
|||||||
description="Orlando Private School is dedicated to providing an unparalleled educational experience for students from elementary to middle school. Our mission is to inspire academic excellence, foster robust character development, and cultivate a supportive community where every child thrives. We believe in nurturing curious minds and confident leaders."
|
description="Orlando Private School is dedicated to providing an unparalleled educational experience for students from elementary to middle school. Our mission is to inspire academic excellence, foster robust character development, and cultivate a supportive community where every child thrives. We believe in nurturing curious minds and confident leaders."
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Grades Served",
|
title: "Grades Served", description: "Offering comprehensive programs from Kindergarten through 8th grade, providing a seamless educational journey."},
|
||||||
description: "Offering comprehensive programs from Kindergarten through 8th grade, providing a seamless educational journey.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Educational Philosophy",
|
title: "Educational Philosophy", description: "Our philosophy centers on a balanced approach, combining challenging academics with character-building experiences in a safe, nurturing environment."},
|
||||||
description: "Our philosophy centers on a balanced approach, combining challenging academics with character-building experiences in a safe, nurturing environment.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Community & Support",
|
title: "Community & Support", description: "We pride ourselves on a strong, engaged community with open communication between faculty, parents, and students, fostering a truly collaborative learning atmosphere. Led by President Dr. Master Jackson & Tashira Glover, and Principle Sabrina Dibernardo."},
|
||||||
description: "We pride ourselves on a strong, engaged community with open communication between faculty, parents, and students, fostering a truly collaborative learning atmosphere. Led by President Dr. Master Jackson & Tashira Glover, and Principle Sabrina Dibernardo.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/personal-shopper-office-with-client_23-2148929566.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/personal-shopper-office-with-client_23-2148929566.jpg"
|
||||||
imageAlt="Students and teachers interacting positively in a classroom setting"
|
imageAlt="Students and teachers interacting positively in a classroom setting"
|
||||||
@@ -181,20 +136,11 @@ export default function LandingPage() {
|
|||||||
description="Our enriched curriculum and diverse extracurricular activities are designed to engage students at every level, fostering both academic prowess and personal growth."
|
description="Our enriched curriculum and diverse extracurricular activities are designed to engage students at every level, fostering both academic prowess and personal growth."
|
||||||
accordionItems={[
|
accordionItems={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Core Academics", content: "We offer a robust curriculum in Mathematics, Language Arts, Science, and Social Studies, tailored to exceed educational standards and prepare students for advanced learning."},
|
||||||
title: "Core Academics",
|
|
||||||
content: "We offer a robust curriculum in Mathematics, Language Arts, Science, and Social Studies, tailored to exceed educational standards and prepare students for advanced learning.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Arts & Technology", content: "Students explore creativity through visual and performing arts, and develop critical 21st-century skills in our technology and coding programs."},
|
||||||
title: "Arts & Technology",
|
|
||||||
content: "Students explore creativity through visual and performing arts, and develop critical 21st-century skills in our technology and coding programs.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Sports & Extracurriculars", content: "From competitive sports teams to various clubs and interest groups, our students have ample opportunities to explore passions, develop talents, and build camaraderie."},
|
||||||
title: "Sports & Extracurriculars",
|
|
||||||
content: "From competitive sports teams to various clubs and interest groups, our students have ample opportunities to explore passions, develop talents, and build camaraderie.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/female-scientist-teaching-chemistry-young-girl_23-2148571308.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/female-scientist-teaching-chemistry-young-girl_23-2148571308.jpg"
|
||||||
imageAlt="Students engaged in various academic and extracurricular activities"
|
imageAlt="Students engaged in various academic and extracurricular activities"
|
||||||
@@ -211,28 +157,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "step-1",
|
id: "step-1", value: "1.", description: "Schedule a Tour: Discover our vibrant campus and classrooms firsthand. Experience our unique learning environment and see what makes us special."},
|
||||||
value: "1.",
|
|
||||||
description: "Schedule a Tour: Discover our vibrant campus and classrooms firsthand. Experience our unique learning environment and see what makes us special.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "step-2",
|
id: "step-2", value: "2.", description: "Complete Application & Screening: Submit your child's application and participate in our comprehensive screening process. Our team will assist you with all necessary documentation."},
|
||||||
value: "2.",
|
|
||||||
description: "Complete Application & Screening: Submit your child's application and participate in our comprehensive screening process. Our team will assist you with all necessary documentation.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "step-3",
|
id: "step-3", value: "3.", description: "Get Ready for the School Year: Upon acceptance, we'll provide all the resources and information needed to prepare your child for a successful and engaging school year ahead."},
|
||||||
value: "3.",
|
|
||||||
description: "Get Ready for the School Year: Upon acceptance, we'll provide all the resources and information needed to prepare your child for a successful and engaging school year ahead.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Admissions Made Simple"
|
title="Admissions Made Simple"
|
||||||
description="Embark on your journey with Orlando Private School through our straightforward admissions process. We're here to guide your family every step of the way."
|
description="Embark on your journey with Orlando Private School through our straightforward admissions process. We're here to guide your family every step of the way."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Start with a Tour",
|
text: "Start with a Tour", href: "#contact-us"},
|
||||||
href: "#contact-us",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -244,41 +179,21 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "elementary",
|
id: "elementary", badge: "K-5", price: "$12,000 / Year", subtitle: "Early Foundations", features: [
|
||||||
badge: "K-5",
|
"Core Curriculum", "Enrichment Programs", "Small Class Sizes", "Personalized Support"],
|
||||||
price: "$12,000 / Year",
|
|
||||||
subtitle: "Early Foundations",
|
|
||||||
features: [
|
|
||||||
"Core Curriculum",
|
|
||||||
"Enrichment Programs",
|
|
||||||
"Small Class Sizes",
|
|
||||||
"Personalized Support",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "middle-school",
|
id: "middle-school", badge: "6-8", price: "$14,500 / Year", subtitle: "Advanced Learning", features: [
|
||||||
badge: "6-8",
|
"Rigorous Academics", "Leadership Opportunities", "Extracurricular Activities", "College Preparatory Focus"],
|
||||||
price: "$14,500 / Year",
|
|
||||||
subtitle: "Advanced Learning",
|
|
||||||
features: [
|
|
||||||
"Rigorous Academics",
|
|
||||||
"Leadership Opportunities",
|
|
||||||
"Extracurricular Activities",
|
|
||||||
"College Preparatory Focus",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Invest in a Future of Opportunity"
|
title="Invest in a Future of Opportunity"
|
||||||
description="Orlando Private School offers affordable private education, representing a significant return on investment in your child's future. Our tuition is structured to provide exceptional value."
|
description="Orlando Private School offers affordable private education, representing a significant return on investment in your child's future. Our tuition is structured to provide exceptional value."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View Tuition Details",
|
text: "View Tuition Details", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Contact Admissions",
|
text: "Contact Admissions", href: "#contact-us"},
|
||||||
href: "#contact-us",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -291,47 +206,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "gallery-1",
|
id: "gallery-1", name: "Creative Minds", price: "Art Class", imageSrc: "http://img.b2bpic.net/free-photo/close-up-kids-painting-together_23-2149027436.jpg", imageAlt: "Students painting in an art class"},
|
||||||
name: "Creative Minds",
|
|
||||||
price: "Art Class",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-kids-painting-together_23-2149027436.jpg",
|
|
||||||
imageAlt: "Students painting in an art class",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "gallery-2",
|
id: "gallery-2", name: "Future Innovators", price: "Robotics Club", imageSrc: "http://img.b2bpic.net/free-photo/girl-with-her-dads-enjoying-family-trip_23-2149503858.jpg", imageAlt: "Children building robots in a robotics club"},
|
||||||
name: "Future Innovators",
|
|
||||||
price: "Robotics Club",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-with-her-dads-enjoying-family-trip_23-2149503858.jpg",
|
|
||||||
imageAlt: "Children building robots in a robotics club",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "gallery-3",
|
id: "gallery-3", name: "On the Field", price: "Soccer Practice", imageSrc: "http://img.b2bpic.net/free-photo/closeup-photo-basketball-ball-with-girl-sitting-plastic-orange-penny-shortboard-asphalt_158538-13662.jpg", imageAlt: "Students playing soccer on a school field"},
|
||||||
name: "On the Field",
|
|
||||||
price: "Soccer Practice",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-photo-basketball-ball-with-girl-sitting-plastic-orange-penny-shortboard-asphalt_158538-13662.jpg",
|
|
||||||
imageAlt: "Students playing soccer on a school field",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "gallery-4",
|
id: "gallery-4", name: "Engaged Learners", price: "Classroom Activity", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-couple-playing-chess_23-2149293631.jpg", imageAlt: "Happy students participating in a classroom activity"},
|
||||||
name: "Engaged Learners",
|
|
||||||
price: "Classroom Activity",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-couple-playing-chess_23-2149293631.jpg",
|
|
||||||
imageAlt: "Happy students participating in a classroom activity",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "gallery-5",
|
id: "gallery-5", name: "Musical Talent", price: "School Band", imageSrc: "http://img.b2bpic.net/free-photo/young-man-writing-notebook-study-session_23-2149285396.jpg", imageAlt: "Students playing instruments in the school band"},
|
||||||
name: "Musical Talent",
|
|
||||||
price: "School Band",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-writing-notebook-study-session_23-2149285396.jpg",
|
|
||||||
imageAlt: "Students playing instruments in the school band",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "gallery-6",
|
id: "gallery-6", name: "Library Exploration", price: "Reading Time", imageSrc: "http://img.b2bpic.net/free-photo/sporty-girl-scores-goal-into-goal-football-concept-girl-football-field_169016-68262.jpg", imageAlt: "Children reading books in the school library"},
|
||||||
name: "Library Exploration",
|
|
||||||
price: "Reading Time",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/sporty-girl-scores-goal-into-goal-football-concept-girl-football-field_169016-68262.jpg",
|
|
||||||
imageAlt: "Children reading books in the school library",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="A Glimpse into Campus Life"
|
title="A Glimpse into Campus Life"
|
||||||
description="Explore the vibrant daily life at Orlando Private School through our photo gallery, showcasing happy students, engaging activities, and our beautiful campus."
|
description="Explore the vibrant daily life at Orlando Private School through our photo gallery, showcasing happy students, engaging activities, and our beautiful campus."
|
||||||
@@ -343,35 +228,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Sarah J., Parent", imageSrc: "http://img.b2bpic.net/free-photo/selfie-portrait-schoolgirl_23-2148203772.jpg", imageAlt: "Photo of Sarah J., a happy parent"},
|
||||||
name: "Sarah J., Parent",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/selfie-portrait-schoolgirl_23-2148203772.jpg",
|
|
||||||
imageAlt: "Photo of Sarah J., a happy parent",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Michael C., Parent", imageSrc: "http://img.b2bpic.net/free-photo/tutor-teach-young-student_23-2148511023.jpg", imageAlt: "Photo of Michael C., a satisfied parent"},
|
||||||
name: "Michael C., Parent",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/tutor-teach-young-student_23-2148511023.jpg",
|
|
||||||
imageAlt: "Photo of Michael C., a satisfied parent",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Emily R., Guardian", imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-winner-gesture-graduate-uniform-looking-blissful_176474-82403.jpg", imageAlt: "Photo of Emily R., a supportive guardian"},
|
||||||
name: "Emily R., Guardian",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-winner-gesture-graduate-uniform-looking-blissful_176474-82403.jpg",
|
|
||||||
imageAlt: "Photo of Emily R., a supportive guardian",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "David K., Alumnus", imageAlt: "Photo of David K., a successful alumnus", imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-concept-with-daughter_23-2147805447.jpg"},
|
||||||
name: "David K., Alumnus",
|
|
||||||
imageAlt: "Photo of David K., a successful alumnus",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-concept-with-daughter_23-2147805447.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Jessica L., Parent", imageSrc: "http://img.b2bpic.net/free-photo/group-activists-friends-collecting-plastic-waste-park-environmental-conservation_1153-4029.jpg", imageAlt: "Photo of Jessica L., a happy parent"},
|
||||||
name: "Jessica L., Parent",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/group-activists-friends-collecting-plastic-waste-park-environmental-conservation_1153-4029.jpg",
|
|
||||||
imageAlt: "Photo of Jessica L., a happy parent",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
cardTitle="Hear From Our Community"
|
cardTitle="Hear From Our Community"
|
||||||
cardTag="Trusted Voices"
|
cardTag="Trusted Voices"
|
||||||
@@ -384,35 +249,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "What grades do you offer?", content: "Orlando Private School proudly serves students from Kindergarten through 8th grade, providing a continuous and comprehensive educational experience."},
|
||||||
title: "What grades do you offer?",
|
|
||||||
content: "Orlando Private School proudly serves students from Kindergarten through 8th grade, providing a continuous and comprehensive educational experience.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Is before and after care available?", content: "Yes, we offer flexible before and after school care programs to accommodate the needs of our families, ensuring a safe and engaging environment for students beyond regular school hours."},
|
||||||
title: "Is before and after care available?",
|
|
||||||
content: "Yes, we offer flexible before and after school care programs to accommodate the needs of our families, ensuring a safe and engaging environment for students beyond regular school hours.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "What curriculum do you use?", content: "Our curriculum is designed to be rigorous and forward-thinking, integrating nationally recognized standards with innovative teaching methodologies to foster critical thinking and creativity."},
|
||||||
title: "What curriculum do you use?",
|
|
||||||
content: "Our curriculum is designed to be rigorous and forward-thinking, integrating nationally recognized standards with innovative teaching methodologies to foster critical thinking and creativity.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "How do I apply?", content: "Our admissions process is simple! Start by scheduling a tour of our campus. After your visit, you can complete the online application and screening. Details are available on our Admissions page."},
|
||||||
title: "How do I apply?",
|
|
||||||
content: "Our admissions process is simple! Start by scheduling a tour of our campus. After your visit, you can complete the online application and screening. Details are available on our Admissions page.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "Do you offer extracurricular activities?", content: "Absolutely! We offer a wide range of extracurricular activities including various sports, arts programs, technology clubs, and academic enrichment groups to suit diverse student interests."},
|
||||||
title: "Do you offer extracurricular activities?",
|
|
||||||
content: "Absolutely! We offer a wide range of extracurricular activities including various sports, arts programs, technology clubs, and academic enrichment groups to suit diverse student interests.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", title: "How can I schedule a tour?", content: "You can easily schedule a tour by clicking on the 'Schedule a Tour' button found throughout our website, or by visiting our Contact Us section for direct booking options."},
|
||||||
title: "How can I schedule a tour?",
|
|
||||||
content: "You can easily schedule a tour by clicking on the 'Schedule a Tour' button found throughout our website, or by visiting our Contact Us section for direct booking options.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
sideTitle="Common Questions"
|
sideTitle="Common Questions"
|
||||||
sideDescription="Find quick answers to frequently asked questions about Orlando Private School, covering admissions, programs, and student life."
|
sideDescription="Find quick answers to frequently asked questions about Orlando Private School, covering admissions, programs, and student life."
|
||||||
@@ -426,18 +273,13 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "rotated-rays-static-grid",
|
variant: "rotated-rays-static-grid"}}
|
||||||
}}
|
|
||||||
text="Ready to Discover the Orlando Private School Difference?"
|
text="Ready to Discover the Orlando Private School Difference?"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule a Tour",
|
text: "Schedule a Tour", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Apply Today",
|
text: "Apply Today", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -446,53 +288,34 @@ export default function LandingPage() {
|
|||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Quick Links",
|
title: "Quick Links", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Home",
|
label: "Home", href: "#home"},
|
||||||
href: "#home",
|
{
|
||||||
|
label: "About Us", href: "#about"},
|
||||||
|
{
|
||||||
|
label: "Academics", href: "#academics"},
|
||||||
|
{
|
||||||
|
label: "Admissions", href: "#admissions"},
|
||||||
|
{
|
||||||
|
label: "Tuition", href: "#tuition"},
|
||||||
|
{
|
||||||
|
label: "File", href: "/file"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "Contact", href: "#contact-us"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Academics",
|
|
||||||
href: "#academics",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Admissions",
|
|
||||||
href: "#admissions",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Tuition",
|
|
||||||
href: "#tuition",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "#contact-us",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact Us",
|
title: "Contact Us", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "4607 Pinehills Orlando Fl 32808",
|
label: "4607 Pinehills Orlando Fl 32808", href: "https://www.google.com/maps/search/4607+Pinehills+Orlando+Fl+32808"},
|
||||||
href: "https://www.google.com/maps/search/4607+Pinehills+Orlando+Fl+32808",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "info@orlandoprivateschool.com",
|
label: "info@orlandoprivateschool.com", href: "mailto:info@orlandoprivateschool.com"},
|
||||||
href: "mailto:info@orlandoprivateschool.com",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "(407) 555-1234",
|
label: "(407) 555-1234", href: "tel:+14075551234"},
|
||||||
href: "tel:+14075551234",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Office Hours: Mon-Fri, 8 AM - 4 PM",
|
label: "Office Hours: Mon-Fri, 8 AM - 4 PM", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -505,4 +328,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f5f4ef;
|
--background: #0a0a0a;
|
||||||
--card: #ffffff;
|
--card: #1a1a1a;
|
||||||
--foreground: #2a2928;
|
--foreground: #f5f5f5;
|
||||||
--primary-cta: #1f3251;
|
--primary-cta: #ffdf7d;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #0a0a0a;
|
||||||
--secondary-cta: #ecebea;
|
--secondary-cta: #1a1a1a;
|
||||||
--secondary-cta-text: #2a2928;
|
--secondary-cta-text: #ffffff;
|
||||||
--accent: #c6b180;
|
--accent: #b8860b;
|
||||||
--background-accent: #e1d4c2;
|
--background-accent: #8b6914;
|
||||||
|
|
||||||
/* 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