Merge version_3 into main #5
@@ -4,27 +4,30 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||
|
||||
export default function AcademicsPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ReactLenis root>
|
||||
<NavbarStyleCentered navItems={[{ name: "Home", id: "/" }, { name: "Academics", id: "/academics" }, { name: "Admissions", id: "/admissions" }]} brandName="ESGEE" />
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered navItems={[{ name: "Home", id: "/" }, { name: "Academics", id: "/academics" }, { name: "Admissions", id: "/admissions" }]} brandName="ESGEE" />
|
||||
</div>
|
||||
<div className="pt-32 pb-20">
|
||||
<FeatureCardThree
|
||||
<FeatureCardEight
|
||||
title="Our Programs"
|
||||
description="Discover our wide range of academic pathways."
|
||||
features={[
|
||||
{ title: "Science & Technology", description: "Pioneering research and tech labs.", imageSrc: "http://img.b2bpic.net/free-photo/laboratory-science_1150-13458.jpg" },
|
||||
{ title: "Arts & Humanities", description: "Fostering creative and critical thinking.", imageSrc: "http://img.b2bpic.net/free-photo/art-studio_1150-13459.jpg" }
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterSimple columns={[]} bottomLeftText="© 2025 ESGEE" />
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple columns={[]} bottomLeftText="© 2025 ESGEE" bottomRightText="Privacy Policy" />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -4,22 +4,26 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
|
||||
export default function AdmissionsPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ReactLenis root>
|
||||
<NavbarStyleCentered navItems={[{ name: "Home", id: "/" }, { name: "Academics", id: "/academics" }, { name: "Admissions", id: "/admissions" }]} brandName="ESGEE" />
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered navItems={[{ name: "Home", id: "/" }, { name: "Academics", id: "/academics" }, { name: "Admissions", id: "/admissions" }]} brandName="ESGEE" />
|
||||
</div>
|
||||
<div className="pt-32 pb-20">
|
||||
<ContactSplitForm
|
||||
<ContactCenter
|
||||
title="Start Your Journey"
|
||||
description="Submit your application today to join our vibrant community."
|
||||
tag="Admissions"
|
||||
inputs={[{ name: "name", type: "text", placeholder: "Full Name" }, { name: "email", type: "email", placeholder: "Email" }]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterSimple columns={[]} bottomLeftText="© 2025 ESGEE" />
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple columns={[]} bottomLeftText="© 2025 ESGEE" bottomRightText="Privacy Policy" />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -2,39 +2,32 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="grid"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="solid"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="grid"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Academics", id: "/academics" },
|
||||
{ name: "Admissions", id: "/admissions" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="ESGEE"
|
||||
/>
|
||||
@@ -42,11 +35,11 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{ variant: "plain" }}
|
||||
title="Excellence at ESGEE"
|
||||
description="Empowering students through innovative education and global perspectives."
|
||||
leftCarouselItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/university-campus-life_1150-13456.jpg" }]}
|
||||
rightCarouselItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/students-library_1150-13455.jpg" }]}
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[{ text: "Explore Academics", href: "/academics" }, { text: "Apply Now", href: "/admissions" }]}
|
||||
/>
|
||||
</div>
|
||||
@@ -57,6 +50,9 @@ export default function LandingPage() {
|
||||
description="ESGEE has been at the forefront of academic excellence for over 50 years."
|
||||
metrics={[{ value: "50+", title: "Years of Excellence" }, { value: "10k+", title: "Alumni" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-school-building_1150-13457.jpg"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="opacity"
|
||||
metricsAnimation="opacity"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -64,10 +60,10 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Academics", items: [{ label: "Programs", href: "/academics" }] },
|
||||
{ title: "Admissions", items: [{ label: "Apply", href: "/admissions" }] },
|
||||
{ title: "Contact", items: [{ label: "Support", href: "#contact" }] }
|
||||
{ title: "Admissions", items: [{ label: "Apply", href: "/admissions" }] }
|
||||
]}
|
||||
bottomLeftText="© 2025 ESGEE"
|
||||
bottomRightText="Privacy Policy"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user