Add src/app/about/page.tsx
This commit is contained in:
69
src/app/about/page.tsx
Normal file
69
src/app/about/page.tsx
Normal file
@@ -0,0 +1,69 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { BookOpen, Lightbulb, Gem, Users } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "About", href: "/about" },
|
||||
{ name: "Programs", href: "/programs" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Destinations", id: "destinations" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Saint Peters International Academy"
|
||||
button={{ text: "Apply Now", href: "#contact" }}
|
||||
/>
|
||||
<div id="mission-values" data-section="mission-values">
|
||||
<MetricSplitMediaAbout
|
||||
className="pt-40"
|
||||
title="Our Mission & Values"
|
||||
description="Saint Peters International Academy is dedicated to fostering intellectual curiosity, personal growth, and global citizenship. We empower students to achieve academic excellence and become compassionate leaders."
|
||||
metrics={[
|
||||
{ value: "Excellence", title: "Academic Rigor" },
|
||||
{ value: "Integrity", title: "Ethical Leadership" },
|
||||
{ value: "Innovation", title: "Future-Ready Skills" },
|
||||
{ value: "Community", title: "Global Perspective" }
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/education/hero/hero1.webp"
|
||||
imageAlt="University Building"
|
||||
tag="About Us"
|
||||
tagIcon={BookOpen}
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<FooterCard
|
||||
logoText="Saint Peters International Academy"
|
||||
copyrightText="© 2024 Saint Peters International Academy"
|
||||
socialLinks={[
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user