Update src/app/page.tsx

This commit is contained in:
2026-05-06 19:47:01 +00:00
parent 17de61378e
commit 99ea78fa12

View File

@@ -32,30 +32,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Mission",
id: "about",
},
{
name: "Services",
id: "features",
},
{
name: "Results",
id: "metrics",
},
{
name: "Testimonials",
id: "testimonials",
},
{
name: "Team",
id: "team",
},
{
name: "Contact",
id: "contact",
},
{ name: "Mission", id: "about" },
{ name: "Services", id: "features" },
{ name: "Results", id: "metrics" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" },
]}
brandName="The Ryan Institute"
/>
@@ -63,93 +45,31 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
background={{
variant: "radial-gradient",
}}
background={{ variant: "radial-gradient" }}
title="I Teach Hope."
description="At The Ryan Institute, we don't just tutor—we transform potential into performance with a luxury, editorial approach to education."
testimonials={[
{
name: "Parent Name",
handle: "@parent",
testimonial: "300-pt increase in SAT scores.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-comfortable-wooden-chairs-generated-by-ai_188544-18284.jpg",
},
{
name: "Parent Name",
handle: "@parent",
testimonial: "100% midterm excellence achieved.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-with-journal-home_23-2150416408.jpg",
},
{
name: "Parent Name",
handle: "@parent",
testimonial: "Unparalleled personalized guidance.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/room-with-wooden-desktop-comfortable-chair_116348-96.jpg",
},
{
name: "Parent Name",
handle: "@parent",
testimonial: "Dr. Ryan is truly transformative.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-working-desk_23-2149429146.jpg",
},
{
name: "Parent Name",
handle: "@parent",
testimonial: "The best investment in our child.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/luxury-apartment-with-modern-design-comfortable-chair-generated-by-ai_188544-17111.jpg",
},
{ name: "Parent Name", handle: "@parent", testimonial: "300-pt increase in SAT scores.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-comfortable-wooden-chairs-generated-by-ai_188544-18284.jpg" },
{ name: "Parent Name", handle: "@parent", testimonial: "100% midterm excellence achieved.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-with-journal-home_23-2150416408.jpg" },
{ name: "Parent Name", handle: "@parent", testimonial: "Unparalleled personalized guidance.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/room-with-wooden-desktop-comfortable-chair_116348-96.jpg" },
{ name: "Parent Name", handle: "@parent", testimonial: "Dr. Ryan is truly transformative.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-working-desk_23-2149429146.jpg" },
{ name: "Parent Name", handle: "@parent", testimonial: "The best investment in our child.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/luxury-apartment-with-modern-design-comfortable-chair-generated-by-ai_188544-17111.jpg" }
]}
imageSrc="http://img.b2bpic.net/free-photo/startup-entrepreneur-looking-into-project-details-timetables-laptop_482257-91149.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/startup-entrepreneur-looking-into-project-details-timetables-laptop_482257-91149.jpg"
mediaAnimation="slide-up"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/startup-entrepreneur-looking-into-project-details-timetables-laptop_482257-91149.jpg",
alt: "Student 1",
},
{
src: "http://img.b2bpic.net/free-photo/college-girls-studying-together_23-2149038418.jpg",
alt: "Student 2",
},
{
src: "http://img.b2bpic.net/free-photo/writing-implements-black-yellow-colors_23-2147879325.jpg",
alt: "Student 3",
},
{
src: "http://img.b2bpic.net/free-photo/interior-design-neoclassical-style-with-furnishings-decor_23-2151199356.jpg",
alt: "Student 4",
},
{
src: "http://img.b2bpic.net/free-photo/education-graduation_23-2151970538.jpg",
alt: "Student 5",
},
{ src: "http://img.b2bpic.net/free-photo/startup-entrepreneur-looking-into-project-details-timetables-laptop_482257-91149.jpg", alt: "Student 1" },
{ src: "http://img.b2bpic.net/free-photo/college-girls-studying-together_23-2149038418.jpg", alt: "Student 2" },
{ src: "http://img.b2bpic.net/free-photo/writing-implements-black-yellow-colors_23-2147879325.jpg", alt: "Student 3" },
{ src: "http://img.b2bpic.net/free-photo/interior-design-neoclassical-style-with-furnishings-decor_23-2151199356.jpg", alt: "Student 4" },
{ src: "http://img.b2bpic.net/free-photo/education-graduation_23-2151970538.jpg", alt: "Student 5" }
]}
marqueeItems={[
{
type: "text",
text: "SAT Mastery",
},
{
type: "text",
text: "Midterm Excellence",
},
{
type: "text",
text: "Elite Mentorship",
},
{
type: "text",
text: "Personalized Growth",
},
{
type: "text",
text: "Proven Outcomes",
},
{ type: "text", text: "SAT Mastery" },
{ type: "text", text: "Midterm Excellence" },
{ type: "text", text: "Elite Mentorship" },
{ type: "text", text: "Personalized Growth" },
{ type: "text", text: "Proven Outcomes" }
]}
/>
</div>
@@ -161,20 +81,11 @@ export default function LandingPage() {
title="A Philosophy of Excellence"
description="We treat every student as a unique entity, moving beyond the blank sheet to cultivate critical thinking, confidence, and long-term academic success."
bulletPoints={[
{
title: "Total Customization",
description: "No cookie-cutter curricula, only tailored instruction.",
},
{
title: "Elite Mentorship",
description: "Expert tutors with a passion for student advocacy.",
},
{
title: "Holistic Success",
description: "Focusing on both performance and student well-being.",
},
{ title: "Total Customization", description: "No cookie-cutter curricula, only tailored instruction." },
{ title: "Elite Mentorship", description: "Expert tutors with a passion for student advocacy." },
{ title: "Holistic Success", description: "Focusing on both performance and student well-being." }
]}
imageSrc="http://img.b2bpic.net/free-photo/college-girls-studying-together_23-2149038418.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/college-girls-studying-together_23-2149038418.jpg"
mediaAnimation="blur-reveal"
/>
</div>
@@ -186,53 +97,20 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Entrance Prep",
description: "Master SAT/ACT and private school admissions.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/writing-implements-black-yellow-colors_23-2147879325.jpg",
},
items: [
{
icon: CheckCircle,
text: "Strategic prep",
},
],
reverse: false,
imageSrc: "http://img.b2bpic.net/free-photo/startup-entrepreneur-looking-into-project-details-timetables-laptop_482257-91149.jpg?_wi=2",
imageAlt: "academic tools luxury",
title: "Entrance Prep", description: "Master SAT/ACT and private school admissions.", media: { imageSrc: "http://img.b2bpic.net/free-photo/writing-implements-black-yellow-colors_23-2147879325.jpg" },
items: [{ icon: CheckCircle, text: "Strategic prep" }],
reverse: false
},
{
title: "K-12 Tutoring",
description: "Deep subject mastery for all core curricula.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/interior-design-neoclassical-style-with-furnishings-decor_23-2151199356.jpg",
},
items: [
{
icon: CheckCircle,
text: "Curriculum mastery",
},
],
reverse: true,
imageSrc: "http://img.b2bpic.net/free-photo/college-girls-studying-together_23-2149038418.jpg?_wi=2",
imageAlt: "academic tools luxury",
title: "K-12 Tutoring", description: "Deep subject mastery for all core curricula.", media: { imageSrc: "http://img.b2bpic.net/free-photo/interior-design-neoclassical-style-with-furnishings-decor_23-2151199356.jpg" },
items: [{ icon: CheckCircle, text: "Curriculum mastery" }],
reverse: true
},
{
title: "Summer Enrichment",
description: "Keep skills sharp with elite summer boot camps.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/education-graduation_23-2151970538.jpg",
},
items: [
{
icon: CheckCircle,
text: "Continuous growth",
},
],
reverse: false,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-sits-escalator_181624-36700.jpg?_wi=1",
imageAlt: "academic tools luxury",
},
title: "Summer Enrichment", description: "Keep skills sharp with elite summer boot camps.", media: { imageSrc: "http://img.b2bpic.net/free-photo/education-graduation_23-2151970538.jpg" },
items: [{ icon: CheckCircle, text: "Continuous growth" }],
reverse: false
}
]}
title="Refined Academic Services"
description="Comprehensive support across all major disciplines and entrance pathways."
@@ -245,27 +123,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
metrics={[
{
id: "1",
value: "300+",
title: "Score Improvement",
description: "Average SAT/ACT gain.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-arrangement-modern-vases_23-2149646565.jpg",
},
{
id: "2",
value: "100%",
title: "Midterm Success",
description: "Subject excellence metrics.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-female-teenager-reading-floor_23-2147864085.jpg",
},
{
id: "3",
value: "100%",
title: "Eligibility Rate",
description: "Top tier university admissions.",
imageSrc: "http://img.b2bpic.net/free-vector/modern-geometric-shapes-background-flat-design_52683-23485.jpg",
},
{ id: "1", value: "300+", title: "Score Improvement", description: "Average SAT/ACT gain.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-arrangement-modern-vases_23-2149646565.jpg" },
{ id: "2", value: "100%", title: "Midterm Success", description: "Subject excellence metrics.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-female-teenager-reading-floor_23-2147864085.jpg" },
{ id: "3", value: "100%", title: "Eligibility Rate", description: "Top tier university admissions.", imageSrc: "http://img.b2bpic.net/free-vector/modern-geometric-shapes-background-flat-design_52683-23485.jpg" }
]}
title="Proven Outcomes"
description="Our numbers reflect our commitment to excellence."
@@ -276,31 +136,11 @@ export default function LandingPage() {
<TestimonialCardTwelve
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Sarah J.",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-sits-escalator_181624-36700.jpg?_wi=2",
},
{
id: "2",
name: "Michael R.",
imageSrc: "http://img.b2bpic.net/free-photo/modern-woman-talking-mobile_23-2148415911.jpg",
},
{
id: "3",
name: "Emily K.",
imageSrc: "http://img.b2bpic.net/free-photo/mixed-rae-african-american-woman-has-rest-her-workout-breathing-deep-body-parts_633478-2160.jpg",
},
{
id: "4",
name: "David W.",
imageSrc: "http://img.b2bpic.net/free-photo/young-african-american-woman-smiling-confident-holding-folder-isolated-black-background_839833-33136.jpg",
},
{
id: "5",
name: "Linda M.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-senior-couple-cuddling_23-2148333669.jpg",
},
{ id: "1", name: "Sarah J.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-sits-escalator_181624-36700.jpg" },
{ id: "2", name: "Michael R.", imageSrc: "http://img.b2bpic.net/free-photo/modern-woman-talking-mobile_23-2148415911.jpg" },
{ id: "3", name: "Emily K.", imageSrc: "http://img.b2bpic.net/free-photo/mixed-rae-african-american-woman-has-rest-her-workout-breathing-deep-body-parts_633478-2160.jpg" },
{ id: "4", name: "David W.", imageSrc: "http://img.b2bpic.net/free-photo/young-african-american-woman-smiling-confident-holding-folder-isolated-black-background_839833-33136.jpg" },
{ id: "5", name: "Linda M.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-senior-couple-cuddling_23-2148333669.jpg" }
]}
cardTitle="Voices of Excellence"
cardTag="Testimonials"
@@ -315,24 +155,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
members={[
{
id: "1",
name: "Dr. Ryan",
role: "Founder",
imageSrc: "http://img.b2bpic.net/free-photo/sensual-student-with-hand-chin_1169-121.jpg",
},
{
id: "2",
name: "Antoynica",
role: "Senior Academic",
imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-man-standing-brick-wall-background-looking-sleepy-tired-exhausted-fatigue-hangover-lazy-eyes-morning_839833-16515.jpg",
},
{
id: "3",
name: "Konner/Quincy",
role: "Academic Specialist",
imageSrc: "http://img.b2bpic.net/free-photo/women-correcting-grammar-mistakes-medium-shot_23-2150171074.jpg",
},
{ id: "1", name: "Dr. Ryan", role: "Founder", imageSrc: "http://img.b2bpic.net/free-photo/sensual-student-with-hand-chin_1169-121.jpg" },
{ id: "2", name: "Antoynica", role: "Senior Academic", imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-man-standing-brick-wall-background-looking-sleepy-tired-exhausted-fatigue-hangover-lazy-eyes-morning_839833-16515.jpg" },
{ id: "3", name: "Konner/Quincy", role: "Academic Specialist", imageSrc: "http://img.b2bpic.net/free-photo/women-correcting-grammar-mistakes-medium-shot_23-2150171074.jpg" }
]}
title="Our Elite Leadership"
description="Meet the experts committed to your student's future."
@@ -343,21 +168,9 @@ export default function LandingPage() {
<FaqSplitText
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "How do I start?",
content: "Contact us for an initial consultation.",
},
{
id: "2",
title: "Is it personalized?",
content: "Absolutely. Everything is tailored.",
},
{
id: "3",
title: "What's the success rate?",
content: "Consistently excellent results.",
},
{ id: "1", title: "How do I start?", content: "Contact us for an initial consultation." },
{ id: "2", title: "Is it personalized?", content: "Absolutely. Everything is tailored." },
{ id: "3", title: "What's the success rate?", content: "Consistently excellent results." }
]}
sideTitle="Common Inquiries"
faqsAnimation="slide-up"
@@ -367,9 +180,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={true}
background={{
variant: "radial-gradient",
}}
background={{ variant: "radial-gradient" }}
tag="Contact"
title="Begin the Transformation"
description="Reach out today to discuss your academic goals."
@@ -381,26 +192,13 @@ export default function LandingPage() {
logoText="The Ryan Institute"
columns={[
{
title: "Links",
items: [
{
label: "About",
href: "#about",
},
{
label: "Services",
href: "#features",
},
title: "Links", items: [
{ label: "About", href: "#about" },
{ label: "Services", href: "#features" },
],
},
{
title: "Legal",
items: [
{
label: "Privacy",
href: "#",
},
],
title: "Legal", items: [{ label: "Privacy", href: "#" }],
},
]}
/>
@@ -408,4 +206,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}