Update src/app/contact/page.tsx

This commit is contained in:
2026-04-22 11:52:37 +00:00
parent 3a9ecc5632
commit 96caeebdba

View File

@@ -8,33 +8,28 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Programs",
id: "/programs",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Programs", id: "/programs" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Little Sprouts"
/>
@@ -43,18 +38,11 @@ export default function LandingPage() {
<div id="contact-form" data-section="contact-form">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Inquire"
title="Visit Us Soon"
description="Book a private tour of our facility and meet our dedicated staff."
buttons={[
{
text: "Schedule a Tour",
href: "#",
},
]}
buttons={[{ text: "Schedule a Tour", href: "#" }]}
/>
</div>
@@ -66,26 +54,8 @@ export default function LandingPage() {
title="Stay Updated"
description="Read our latest news and parenting tips."
blogs={[
{
id: "b1",
category: "News",
title: "New Garden Play Area",
excerpt: "We are excited to unveil our new playground additions.",
imageSrc: "http://img.b2bpic.net/free-photo/cute-girl-showing-markers_23-2147663554.jpg",
authorName: "Admin",
authorAvatar: "http://img.b2bpic.net/free-photo/children-group-playing-sofa_23-2148107455.jpg",
date: "Oct 12, 2024",
},
{
id: "b2",
category: "Tips",
title: "Transitioning Home",
excerpt: "Helpful tips for early separation anxiety.",
imageSrc: "http://img.b2bpic.net/free-photo/that-muffins-taste-so-delicious_329181-7631.jpg",
authorName: "Director",
authorAvatar: "http://img.b2bpic.net/free-photo/beautiful-girl-paper-crown-looking-camera_23-2147807982.jpg",
date: "Sep 28, 2024",
},
{ id: "b1", category: "News", title: "New Garden Play Area", excerpt: "We are excited to unveil our new playground additions.", imageSrc: "http://img.b2bpic.net/free-photo/cute-girl-showing-markers_23-2147663554.jpg", authorName: "Admin", authorAvatar: "http://img.b2bpic.net/free-photo/children-group-playing-sofa_23-2148107455.jpg", date: "Oct 12, 2024" },
{ id: "b2", category: "Tips", title: "Transitioning Home", excerpt: "Helpful tips for early separation anxiety.", imageSrc: "http://img.b2bpic.net/free-photo/that-muffins-taste-so-delicious_329181-7631.jpg", authorName: "Director", authorAvatar: "http://img.b2bpic.net/free-photo/beautiful-girl-paper-crown-looking-camera_23-2147807982.jpg", date: "Sep 28, 2024" },
]}
/>
</div>
@@ -104,28 +74,8 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="Little Sprouts"
columns={[
{
title: "Navigation",
items: [
{
label: "Programs",
href: "/programs",
},
{
label: "About",
href: "/about",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
],
},
{ title: "Navigation", items: [{ label: "Programs", href: "/programs" }, { label: "About", href: "/about" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] },
]}
copyrightText="© 2024 Little Sprouts Nursery."
/>
@@ -133,4 +83,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}