Update src/app/page.tsx

This commit is contained in:
2026-05-21 08:11:54 +00:00
parent 40d93a20e8
commit fa435aac61

View File

@@ -32,26 +32,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "hero",
},
{
name: "About",
id: "about",
},
{
name: "Features",
id: "features",
},
{
name: "Faculty",
id: "team",
},
{
name: "Contact",
id: "contact",
},
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Faculty", id: "team" },
{ name: "Contact", id: "contact" },
]}
brandName="Gifted Hands Science"
/>
@@ -62,75 +47,21 @@ export default function LandingPage() {
title="Igniting Curiosity, Empowering Innovators."
description="At Gifted Hands Science College, we provide the world-class laboratory facilities and expert faculty to turn your passion for discovery into a rewarding future in science and engineering."
testimonials={[
{
name: "Sarah O.",
handle: "@gifted-student",
testimonial: "The hands-on lab approach here completely changed how I look at scientific research.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-scientist-analyzing-liquid-sample-microscope-tray-laboratory-research-dna-genetic-lab-worker-with-safety-glasses-using-optical-glass-tool-scientific-development_482257-37316.jpg",
},
{
name: "Dr. Miller",
handle: "@faculty-lead",
testimonial: "A vibrant academic environment where innovation and theoretical expertise meet.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/female-researcher-biotechnology-laboratory-with-clipboard_23-2148776148.jpg",
},
{
name: "Marcus J.",
handle: "@alumni",
testimonial: "Gifted Hands provided the exact foundation I needed for my engineering career.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiley-female-researcher-laboratory_23-2148776156.jpg",
},
{
name: "Elena R.",
handle: "@researcher",
testimonial: "Collaborating with peers on real-world experiments is an incredible experience.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/specialist-researcher-woman-holding-vacutainer-with-infected-blood-working-biochemical-vaccine-against-coronavirus-global-pandemic-woman-specialist-analyzing-sample-hospital-laboratory_482257-32369.jpg",
},
{
name: "Kevin L.",
handle: "@tech-enthusiast",
testimonial: "The innovation labs are state-of-the-art and always pushing boundaries.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/excited-young-man-woman-protective-glasses-doing-experiments-robotics-laboratory_1268-23360.jpg",
},
]}
buttons={[
{
text: "Apply Now",
href: "#contact",
},
{
text: "Explore Programs",
href: "#features",
},
{ name: "Sarah O.", handle: "@gifted-student", testimonial: "The hands-on lab approach here completely changed how I look at scientific research.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-scientist-analyzing-liquid-sample-microscope-tray-laboratory-research-dna-genetic-lab-worker-with-safety-glasses-using-optical-glass-tool-scientific-development_482257-37316.jpg" },
{ name: "Dr. Miller", handle: "@faculty-lead", testimonial: "A vibrant academic environment where innovation and theoretical expertise meet.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/female-researcher-biotechnology-laboratory-with-clipboard_23-2148776148.jpg" },
{ name: "Marcus J.", handle: "@alumni", testimonial: "Gifted Hands provided the exact foundation I needed for my engineering career.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiley-female-researcher-laboratory_23-2148776156.jpg" },
{ name: "Elena R.", handle: "@researcher", testimonial: "Collaborating with peers on real-world experiments is an incredible experience.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/specialist-researcher-woman-holding-vacutainer-with-infected-blood-working-biochemical-vaccine-against-coronavirus-global-pandemic-woman-specialist-analyzing-sample-hospital-laboratory_482257-32369.jpg" },
{ name: "Kevin L.", handle: "@tech-enthusiast", testimonial: "The innovation labs are state-of-the-art and always pushing boundaries.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/excited-young-man-woman-protective-glasses-doing-experiments-robotics-laboratory_1268-23360.jpg" }
]}
buttons={[{ text: "Apply Now", href: "#contact" }, { text: "Explore Programs", href: "#features" }]}
imageSrc="http://img.b2bpic.net/free-photo/happy-kids-elementary-school_53876-138146.jpg"
imageAlt="student lab science"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/girls-learning-more-about-chemistry-class_23-2149068370.jpg",
alt: "Student 1",
},
{
src: "http://img.b2bpic.net/free-photo/kids-learning-more-about-chemistry-class_23-2149068379.jpg",
alt: "Student 2",
},
{
src: "http://img.b2bpic.net/free-photo/children-learning-more-about-chemistry-class_23-2149068339.jpg",
alt: "Student 3",
},
{
src: "http://img.b2bpic.net/free-photo/girls-learning-more-about-chemistry-class_23-2149068365.jpg",
alt: "Student 4",
},
{
src: "http://img.b2bpic.net/free-photo/young-male-student-sitting-staircase-with-backpack-book-takeaway-coffee-cup_23-2148093595.jpg",
alt: "Student 5",
},
{ src: "http://img.b2bpic.net/free-photo/girls-learning-more-about-chemistry-class_23-2149068370.jpg", alt: "Student 1" },
{ src: "http://img.b2bpic.net/free-photo/kids-learning-more-about-chemistry-class_23-2149068379.jpg", alt: "Student 2" },
{ src: "http://img.b2bpic.net/free-photo/children-learning-more-about-chemistry-class_23-2149068339.jpg", alt: "Student 3" },
{ src: "http://img.b2bpic.net/free-photo/girls-learning-more-about-chemistry-class_23-2149068365.jpg", alt: "Student 4" },
{ src: "http://img.b2bpic.net/free-photo/young-male-student-sitting-staircase-with-backpack-book-takeaway-coffee-cup_23-2148093595.jpg", alt: "Student 5" }
]}
avatarText="Join 500+ successful alumni"
/>
@@ -141,12 +72,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="A Legacy of Scientific Excellence"
description="Gifted Hands Science College is dedicated to cultivating the next generation of scientific pioneers. Our integrated approach bridges the gap between deep theory and practical application, ensuring students excel in every industry."
buttons={[
{
text: "Read Our Vision",
href: "#",
},
]}
buttons={[{ text: "Read Our Vision", href: "#" }]}
imageSrc="http://img.b2bpic.net/free-photo/building_1127-3187.jpg"
imageAlt="science college building"
/>
@@ -159,27 +85,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
features={[
{
title: "Advanced Labs",
description: "State-of-the-art facilities equipped with modern research tools.",
imageSrc: "http://img.b2bpic.net/free-photo/back-view-woman-writing-blackboard_23-2148581909.jpg",
titleImageSrc: "http://img.b2bpic.net/free-photo/teacher-with-children-looking-screen-lesson_259150-60331.jpg",
buttonText: "See Labs",
},
{
title: "Research Mentorship",
description: "Work side-by-side with leading scientists in various fields.",
imageSrc: "http://img.b2bpic.net/free-photo/row-businesswomen-drawing-project-white-paper-workplace_23-2147955178.jpg",
titleImageSrc: "http://img.b2bpic.net/free-photo/international-team_273609-6343.jpg",
buttonText: "View Mentors",
},
{
title: "Innovation Labs",
description: "Real-world engineering challenges to test your problem-solving.",
imageSrc: "http://img.b2bpic.net/free-photo/creative-arrangement-paper-planets_23-2148874912.jpg",
titleImageSrc: "http://img.b2bpic.net/free-photo/dna-strand_1048-4979.jpg",
buttonText: "Join Innovation",
},
{ title: "Advanced Labs", description: "State-of-the-art facilities equipped with modern research tools.", imageSrc: "http://img.b2bpic.net/free-photo/back-view-woman-writing-blackboard_23-2148581909.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/teacher-with-children-looking-screen-lesson_259150-60331.jpg", buttonText: "See Labs" },
{ title: "Research Mentorship", description: "Work side-by-side with leading scientists in various fields.", imageSrc: "http://img.b2bpic.net/free-photo/row-businesswomen-drawing-project-white-paper-workplace_23-2147955178.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/international-team_273609-6343.jpg", buttonText: "View Mentors" },
{ title: "Innovation Labs", description: "Real-world engineering challenges to test your problem-solving.", imageSrc: "http://img.b2bpic.net/free-photo/creative-arrangement-paper-planets_23-2148874912.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/dna-strand_1048-4979.jpg", buttonText: "Join Innovation" }
]}
title="Why Choose Us?"
description="Cutting-edge resources paired with elite faculty guidance."
@@ -188,31 +96,14 @@ export default function LandingPage() {
<div id="metrics" data-section="metrics">
<MetricCardOne
animationType="slide-up"
textboxLayout="split"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
metrics={[
{
id: "m1",
value: "98%",
title: "Placement Rate",
description: "Graduates finding roles within 6 months.",
icon: CheckCircle,
},
{
id: "m2",
value: "150+",
title: "Lab Projects",
description: "Active research grants and projects.",
icon: Star,
},
{
id: "m3",
value: "20:1",
title: "Student-Faculty Ratio",
description: "Ensuring personal mentorship and support.",
icon: Users,
},
{ id: "m1", value: "98%", title: "Placement Rate", description: "Graduates finding roles within 6 months.", icon: CheckCircle },
{ id: "m2", value: "150+", title: "Lab Projects", description: "Active research grants and projects.", icon: Star },
{ id: "m3", value: "20:1", title: "Student-Faculty Ratio", description: "Ensuring personal mentorship and support.", icon: Users },
]}
title="Impact by the Numbers"
description="Driven by results and academic success."
@@ -224,46 +115,11 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
{
id: "t1",
title: "Amazing Experience",
quote: "The laboratory support is unparalleled.",
name: "Alex R.",
role: "Biology Grad",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-wearing-lab-coat_23-2149551158.jpg",
},
{
id: "t2",
title: "Career Ready",
quote: "I walked into my interview with full confidence.",
name: "Jamie L.",
role: "Engineering Grad",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-woman-protective-glasses-doing-experiments-robotics-laboratory-robot_1268-23356.jpg",
},
{
id: "t3",
title: "Inspiring",
quote: "Faculty really cares about every student's growth.",
name: "Sam K.",
role: "Chemistry Major",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-white-t-shirt-jeans-holding-file-folder-showing-silence-gesture-looking-serious-front-view_176474-89255.jpg",
},
{
id: "t4",
title: "Great Research",
quote: "I worked on projects that actually impact the field.",
name: "Jordan P.",
role: "Data Scientist",
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-multiethnic-coworker-meet-together-preparing-project-discuss-ideas-productive-scientific-work_273609-44833.jpg",
},
{
id: "t5",
title: "Top Tier",
quote: "This college sets the bar for scientific education.",
name: "Casey W.",
role: "Research Fellow",
imageSrc: "http://img.b2bpic.net/free-photo/doctor-giving-presentation-team-interim-doctors_107420-84788.jpg",
},
{ id: "t1", title: "Amazing Experience", quote: "The laboratory support is unparalleled.", name: "Alex R.", role: "Biology Grad", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-wearing-lab-coat_23-2149551158.jpg" },
{ id: "t2", title: "Career Ready", quote: "I walked into my interview with full confidence.", name: "Jamie L.", role: "Engineering Grad", imageSrc: "http://img.b2bpic.net/free-photo/young-man-woman-protective-glasses-doing-experiments-robotics-laboratory-robot_1268-23356.jpg" },
{ id: "t3", title: "Inspiring", quote: "Faculty really cares about every student's growth.", name: "Sam K.", role: "Chemistry Major", imageSrc: "http://img.b2bpic.net/free-photo/young-man-white-t-shirt-jeans-holding-file-folder-showing-silence-gesture-looking-serious-front-view_176474-89255.jpg" },
{ id: "t4", title: "Great Research", quote: "I worked on projects that actually impact the field.", name: "Jordan P.", role: "Data Scientist", imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-multiethnic-coworker-meet-together-preparing-project-discuss-ideas-productive-scientific-work_273609-44833.jpg" },
{ id: "t5", title: "Top Tier", quote: "This college sets the bar for scientific education.", name: "Casey W.", role: "Research Fellow", imageSrc: "http://img.b2bpic.net/free-photo/doctor-giving-presentation-team-interim-doctors_107420-84788.jpg" },
]}
title="Student Voices"
description="Hear directly from those shaping the future of science."
@@ -277,24 +133,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
members={[
{
id: "tm1",
name: "Dr. Susan V.",
role: "Head of Biology",
imageSrc: "http://img.b2bpic.net/free-photo/positive-relaxed-mature-business-man-standing-office-cafe-leaning-counter-holding-jacket-shoulder-smiling-camera_74855-10344.jpg",
},
{
id: "tm2",
name: "Prof. David Chen",
role: "Chemical Engineering Lead",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-posing-library_23-2148727835.jpg",
},
{
id: "tm3",
name: "Research Group Alpha",
role: "Faculty Specialists",
imageSrc: "http://img.b2bpic.net/free-photo/classmates-learning-together-from-notes-laptop_23-2149265843.jpg",
},
{ id: "tm1", name: "Dr. Susan V.", role: "Head of Biology", imageSrc: "http://img.b2bpic.net/free-photo/positive-relaxed-mature-business-man-standing-office-cafe-leaning-counter-holding-jacket-shoulder-smiling-camera_74855-10344.jpg" },
{ id: "tm2", name: "Prof. David Chen", role: "Chemical Engineering Lead", imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-posing-library_23-2148727835.jpg" },
{ id: "tm3", name: "Research Group Alpha", role: "Faculty Specialists", imageSrc: "http://img.b2bpic.net/free-photo/classmates-learning-together-from-notes-laptop_23-2149265843.jpg" },
]}
title="Meet Our Faculty"
description="Learn from the brightest minds in academia."
@@ -306,21 +147,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{
id: "f1",
title: "When do admissions open?",
content: "Admissions cycle opens every September and January.",
},
{
id: "f2",
title: "Are there scholarships?",
content: "Yes, we offer merit-based and research-based scholarships.",
},
{
id: "f3",
title: "How do lab hours work?",
content: "Labs are open 24/7 to graduate students.",
},
{ id: "f1", title: "When do admissions open?", content: "Admissions cycle opens every September and January." },
{ id: "f2", title: "Are there scholarships?", content: "Yes, we offer merit-based and research-based scholarships." },
{ id: "f3", title: "How do lab hours work?", content: "Labs are open 24/7 to graduate students." },
]}
imageSrc="http://img.b2bpic.net/free-photo/various-object-shelf_1252-614.jpg"
mediaAnimation="slide-up"
@@ -334,9 +163,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
tag="Admissions"
title="Begin Your Journey"
description="Start your application with Gifted Hands Science College today."
@@ -347,36 +174,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "College",
items: [
{
label: "About",
href: "#about",
},
{
label: "Faculty",
href: "#team",
},
{
label: "Contact",
href: "#contact",
},
],
},
{
title: "Support",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
{ title: "College", items: [{ label: "About", href: "#about" }, { label: "Faculty", href: "#team" }, { label: "Contact", href: "#contact" }] },
{ title: "Support", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] }
]}
bottomLeftText="© 2024 Gifted Hands Science College."
bottomRightText="All rights reserved."