Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6a2486c610 | |||
| 35b155e198 |
@@ -7,8 +7,8 @@ import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwe
|
||||
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import { Raleway } from "next/font/google";
|
||||
|
||||
@@ -63,7 +63,6 @@ export default function Page() {
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/friends-having-80s-theme-party_23-2150880753.jpg", imageAlt: "Kids enjoying various activities in a school playground" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
@@ -136,8 +135,10 @@ export default function Page() {
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to Join the Sarva Shiksha Family? Reach out to us for admissions, queries, or a campus tour. We're here to help!"
|
||||
<ContactCTA
|
||||
tag="Connect With Us"
|
||||
title="Ready to Join the Sarva Shiksha Family?"
|
||||
description="Reach out to us for admissions, queries, or a campus tour. We're here to help!"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Get in Touch", href: "mailto:admissions@sarvashikshaschool.com" },
|
||||
@@ -147,13 +148,35 @@ export default function Page() {
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
<FooterMedia
|
||||
logoText="Sarva Shiksha School"
|
||||
logoSrc="http://img.b2bpic.net/free-vector/university-icon-set_1262-8061.jpg"
|
||||
logoAlt="Sarva Shiksha School Logo"
|
||||
copyrightText="© 2024 Sarva Shiksha School. All rights reserved."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-empty-elementary-school-classroom_23-2149591032.jpg"
|
||||
imageAlt="Empty elementary school classroom"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "#hero" },
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Programs", href: "#programs" },
|
||||
{ label: "Faculty", href: "#faculty" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Admissions", items: [
|
||||
{ label: "FAQ", href: "#faq" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user