Switch to version 3: modified src/app/page.tsx

This commit is contained in:
2026-05-28 12:23:54 +00:00
parent 57501e029e
commit c603057f9b

View File

@@ -4,12 +4,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Facebook, Twitter, Instagram, Linkedin, MessageCircleMore, Users, CalendarCheck, Briefcase, BookOpenText } from 'lucide-react';
export default function LandingPage() {
return (
@@ -37,6 +39,8 @@ export default function LandingPage() {
name: "Programs", id: "#programs"},
{
name: "Why Choose Us", id: "#why-choose-us"},
{
name: "Achievements", id: "#achievements"},
{
name: "Testimonials", id: "#testimonials"},
{
@@ -131,6 +135,31 @@ export default function LandingPage() {
/>
</div>
<div id="achievements" data-section="achievements">
<MetricCardOne
title="Our Impact in Numbers"
description="See the difference Victorious Education Services makes through key achievements and community impact."
metrics={[
{
id: "1", value: "500+", title: "Students Enrolled", description: "Over 500 students have found success through our programs.", icon: Users
},
{
id: "2", value: "10+", title: "Years of Experience", description: "A decade of dedication to educational excellence.", icon: CalendarCheck
},
{
id: "3", value: "20+", title: "Certified Teachers", description: "Highly qualified and passionate educators.", icon: Briefcase
},
{
id: "4", value: "7+", title: "Programs Offered", description: "Diverse courses catering to all age groups.", icon: BookOpenText
},
]}
animationType="slide-up"
gridVariant="uniform-all-items-equal"
useInvertedBackground={true}
textboxLayout="default"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
animationType="slide-up"
@@ -161,11 +190,11 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "gallery-1", name: "School Building Exterior", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EJXNFp1g43bPWHKz8F8ojVJjeD/uploaded-1779898036145-pswlk7e3.png", imageAlt: "Victorious Education Services school building"},
id: "gallery-1", name: "School Building Exterior", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EJXNFp1g43bPWHKz8FojVJjeD/uploaded-1779898036145-pswlk7e3.png", imageAlt: "Victorious Education Services school building"},
{
id: "gallery-2", name: "Graduation Ceremony Tents", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EJXNFp1g43bPWHKz8F8ojVJjeD/uploaded-1779898036145-6anhl3f6.png", imageAlt: "Graduation ceremony setup with tents"},
id: "gallery-2", name: "Graduation Ceremony Tents", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EJXNFp1g43bPWHKz8FojVJjeD/uploaded-1779898036145-6anhl3f6.png", imageAlt: "Graduation ceremony setup with tents"},
{
id: "gallery-3", name: "Group Student Photo", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EJXNFp1g43bPWHKz8F8ojVJjeD/uploaded-1779898036145-a62ptt8v.png", imageAlt: "Group photo of happy students"},
id: "gallery-3", name: "Group Student Photo", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EJXNFp1g43bPWHKz8FojVJjeD/uploaded-1779898036145-a62ptt8v.png", imageAlt: "Group photo of happy students"},
{
id: "gallery-4", name: "Students Learning Actively", price: "", imageSrc: "http://img.b2bpic.net/free-photo/female-teacher-teaching-kids-about-disinfecting_23-2148925433.jpg", imageAlt: "Students engaged in a classroom activity"},
{
@@ -193,12 +222,16 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterCard
logoText="Victorious Education Services"
leftLink={{
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service", href: "#"}}
copyrightText="© 2024 Victorious Education Services. All rights reserved."
socialLinks={[
{ icon: Facebook, href: "https://facebook.com/victoriouseducation", ariaLabel: "Facebook" },
{ icon: Twitter, href: "https://twitter.com/victoriouseducation", ariaLabel: "Twitter" },
{ icon: Instagram, href: "https://instagram.com/victoriouseducation", ariaLabel: "Instagram" },
{ icon: Linkedin, href: "https://linkedin.com/company/victoriouseducation", ariaLabel: "LinkedIn" },
{ icon: MessageCircleMore, href: "https://wa.me/256392176077", ariaLabel: "WhatsApp" }
]}
/>
</div>
</ReactLenis>