Switch to version 2: modified src/app/contact/page.tsx
This commit is contained in:
@@ -25,23 +25,38 @@ 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="Academy Excellence"
|
||||
brandName="Wisdom Science & Maths"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-body" data-section="contact-body">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
title="Contact Us"
|
||||
description="Reach out for inquiries."
|
||||
buttons={[]}
|
||||
tag="Support"
|
||||
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"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -49,22 +64,61 @@ export default function LandingPage() {
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[]}
|
||||
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.",
|
||||
},
|
||||
]}
|
||||
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" }] }
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Courses",
|
||||
href: "/courses",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Schedule",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Academy Excellence"
|
||||
logoText="Wisdom Science & Maths"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user