Update src/app/contact/page.tsx

This commit is contained in:
2026-05-08 14:17:41 +00:00
parent f5f61b8486
commit 5d37552d22

View File

@@ -25,38 +25,23 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Courses",
id: "/courses",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Courses", id: "/courses" },
{ name: "Contact", id: "/contact" },
]}
brandName="Wisdom Science & Maths"
brandName="Academy Excellence"
/>
</div>
<div id="contact-body" data-section="contact-body">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
title="Contact Us"
description="1st Floor, Buthgamuwa Road, Angoda, Sri Lanka. Call us: 077 111 3391"
imageSrc="http://img.b2bpic.net/free-photo/girl-near-microscope-observing-teacher_259150-60352.jpg"
mediaAnimation="slide-up"
tag="Get in touch"
description="Reach out for inquiries."
buttons={[]}
tag="Support"
/>
</div>
@@ -64,61 +49,22 @@ export default function LandingPage() {
<FaqDouble
textboxLayout="default"
useInvertedBackground={true}
faqs={[
{
id: "q1",
title: "Do you provide notes?",
content: "Yes, comprehensive notes are provided for all subjects.",
},
{
id: "q2",
title: "What mediums do you cover?",
content: "We cover both English and Sinhala mediums.",
},
{
id: "q3",
title: "Are there demo classes?",
content: "Yes, we encourage students to attend a demo session.",
},
]}
faqs={[]}
title="Common Questions"
faqsAnimation="slide-up"
description="Find answers to frequently asked questions about our programs."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Courses",
href: "/courses",
},
],
},
{
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "Schedule",
href: "#",
},
],
},
{ items: [{ label: "About", href: "/about" }, { label: "Courses", href: "/courses" }] },
{ items: [{ label: "Contact Us", href: "/contact" }] }
]}
logoText="Wisdom Science & Maths"
logoText="Academy Excellence"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}