Merge version_3 into main #3

Merged
bender merged 1 commits from version_3 into main 2026-03-05 15:57:35 +00:00

View File

@@ -11,6 +11,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import { Sparkles, Award, Building2, Heart, CheckCircle, Mail } from 'lucide-react';
import Image from 'next/image';
export default function HomePage() {
const navItems = [
@@ -87,32 +88,48 @@ export default function HomePage() {
</div>
<div id="hero" data-section="hero">
<HeroSplitDoubleCarousel
tag="Welcome to Excellence"
tagIcon={Sparkles}
tagAnimation="slide-up"
title="Adarsh International School"
description="Nurturing minds, inspiring futures. A premier CBSE-affiliated institution dedicated to holistic development, academic excellence, and innovation. Located in Hoskote, Bangalore, we provide world-class education for classes 1-10."
buttons={[
{ text: "Explore Admissions", href: "/admissions" },
{ text: "Learn More", href: "/about" },
]}
buttonAnimation="blur-reveal"
background={{ variant: "radial-gradient" }}
leftCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/female-business-executive-using-digital-tablet_1170-1992.jpg?_wi=1", imageAlt: "Modern WiFi-enabled classroom" },
{ imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-female-student-happily-making-notes-while-studying-library-university_574295-1531.jpg?_wi=1", imageAlt: "Students engaged in learning" },
{ imageSrc: "http://img.b2bpic.net/free-photo/ancient-books-library-table_23-2147711433.jpg?_wi=1", imageAlt: "School library and reading room" },
{ imageSrc: "http://img.b2bpic.net/free-photo/building_1127-3188.jpg?_wi=1", imageAlt: "Beautiful school campus" },
]}
rightCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-kids-playing-with-water-gun_23-2149073658.jpg?_wi=1", imageAlt: "Spacious playground for sports" },
{ imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=1", imageAlt: "Advanced computer laboratory" },
{ imageSrc: "http://img.b2bpic.net/free-photo/glass-test-tubes-with-colorful-viscous-liquid-isolated-gray-surface-chemical-laboratory_176532-14364.jpg?_wi=1", imageAlt: "Fully equipped science lab" },
{ imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-jungle-themed-party_23-2149431610.jpg?_wi=1", imageAlt: "Students participating in school events" },
]}
carouselPosition="right"
/>
<div className="flex items-center justify-center gap-8 md:gap-12 px-4 md:px-8">
{/* Logo on the left */}
<div className="flex-shrink-0 w-32 md:w-48 h-32 md:h-48">
<Image
src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Crect width='200' height='200' fill='%23106EFB'/%3E%3Ctext x='50%25' y='50%25' font-size='60' fill='white' text-anchor='middle' dominant-baseline='middle' font-weight='bold'%3EAS%3C/text%3E%3C/svg%3E"
alt="Adarsh School Logo"
width={192}
height={192}
className="w-full h-full"
priority
/>
</div>
{/* Hero content */}
<div className="flex-1">
<HeroSplitDoubleCarousel
tag="Welcome to Excellence"
tagIcon={Sparkles}
tagAnimation="slide-up"
title="Adarsh International School"
description="Nurturing minds, inspiring futures. A premier CBSE-affiliated institution dedicated to holistic development, academic excellence, and innovation. Located in Hoskote, Bangalore, we provide world-class education for classes 1-10."
buttons={[
{ text: "Explore Admissions", href: "/admissions" },
{ text: "Learn More", href: "/about" },
]}
buttonAnimation="blur-reveal"
background={{ variant: "radial-gradient" }}
leftCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/female-business-executive-using-digital-tablet_1170-1992.jpg?_wi=1", imageAlt: "Modern WiFi-enabled classroom" },
{ imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-female-student-happily-making-notes-while-studying-library-university_574295-1531.jpg?_wi=1", imageAlt: "Students engaged in learning" },
{ imageSrc: "http://img.b2bpic.net/free-photo/ancient-books-library-table_23-2147711433.jpg?_wi=1", imageAlt: "School library and reading room" },
{ imageSrc: "http://img.b2bpic.net/free-photo/building_1127-3188.jpg?_wi=1", imageAlt: "Beautiful school campus" },
]}
rightCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-kids-playing-with-water-gun_23-2149073658.jpg?_wi=1", imageAlt: "Spacious playground for sports" },
{ imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=1", imageAlt: "Advanced computer laboratory" },
{ imageSrc: "http://img.b2bpic.net/free-photo/glass-test-tubes-with-colorful-viscous-liquid-isolated-gray-surface-chemical-laboratory_176532-14364.jpg?_wi=1", imageAlt: "Fully equipped science lab" },
{ imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-jungle-themed-party_23-2149431610.jpg?_wi=1", imageAlt: "Students participating in school events" },
]}
carouselPosition="right"
/>
</div>
</div>
</div>
<div id="about" data-section="about">
@@ -238,4 +255,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}