Update src/app/programs/page.tsx

This commit is contained in:
2026-04-22 11:52:38 +00:00
parent 820c7170a9
commit 3799b5d663

View File

@@ -8,33 +8,28 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
export default function LandingPage() {
export default function ProgramsPage() {
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,46 +38,13 @@ export default function LandingPage() {
<div id="programs-list" data-section="programs-list">
<ProductCardOne
animationType="slide-up"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
textboxLayout="split"
useInvertedBackground={false}
products={[
{
id: "p1",
name: "Infant Care",
price: "Contact us",
imageSrc: "http://img.b2bpic.net/free-photo/unrecognizable-mother-daughter-making-garland_23-2147760629.jpg",
},
{
id: "p2",
name: "Toddler Program",
price: "Contact us",
imageSrc: "http://img.b2bpic.net/free-photo/children-playing-with-blocks-building-tower_23-2152019418.jpg",
},
{
id: "p3",
name: "Early Preschool",
price: "Contact us",
imageSrc: "http://img.b2bpic.net/free-photo/happy-kids-together-nature_23-2148201551.jpg",
},
{
id: "p4",
name: "Pre-K",
price: "Contact us",
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-human-hand-making-fruits-vegetable-shape-from-clay_23-2148193690.jpg",
},
{
id: "p5",
name: "After School",
price: "Contact us",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-easter-background-with-copyspace_23-2148059783.jpg",
},
{
id: "p6",
name: "Summer Camp",
price: "Contact us",
imageSrc: "http://img.b2bpic.net/free-photo/kids-playing-park-full-shot_23-2149920119.jpg",
},
{ id: "p1", name: "Infant Care", price: "Contact us", imageSrc: "http://img.b2bpic.net/free-photo/unrecognizable-mother-daughter-making-garland_23-2147760629.jpg" },
{ id: "p2", name: "Toddler Program", price: "Contact us", imageSrc: "http://img.b2bpic.net/free-photo/children-playing-with-blocks-building-tower_23-2152019418.jpg" },
{ id: "p3", name: "Early Preschool", price: "Contact us", imageSrc: "http://img.b2bpic.net/free-photo/happy-kids-together-nature_23-2148201551.jpg" },
]}
title="Our Programs"
description="Age-appropriate learning modules for your child."
@@ -96,16 +58,8 @@ export default function LandingPage() {
title="Curriculum Focus"
description="Developing cognitive and social skills through play."
features={[
{
title: "STEAM Education",
description: "Creative science experiments.",
imageSrc: "http://img.b2bpic.net/free-photo/children-sitting-playroom-floor_23-2147664007.jpg",
},
{
title: "Artistic Expression",
description: "Expressive arts and craft sessions.",
imageSrc: "http://img.b2bpic.net/free-photo/group-preschoolers-playroom_23-2147663834.jpg",
},
{ title: "STEAM Education", description: "Creative science experiments.", imageSrc: "http://img.b2bpic.net/free-photo/children-sitting-playroom-floor_23-2147664007.jpg" },
{ title: "Artistic Expression", description: "Expressive arts and craft sessions.", imageSrc: "http://img.b2bpic.net/free-photo/group-preschoolers-playroom_23-2147663834.jpg" },
]}
/>
</div>
@@ -118,27 +72,8 @@ export default function LandingPage() {
title="Our Programs Pricing"
description="Competitive tuition for quality care."
plans={[
{
id: "p-1",
badge: "Start",
price: "Custom",
subtitle: "Basic entry",
features: [
"Half day",
"Core curriculum",
],
},
{
id: "p-2",
badge: "Extended",
price: "Custom",
subtitle: "Full support",
features: [
"Full day",
"Enrichment classes",
"Extended hours",
],
},
{ id: "p-1", badge: "Start", price: "Custom", subtitle: "Basic entry", features: ["Half day", "Core curriculum"] },
{ id: "p-2", badge: "Extended", price: "Custom", subtitle: "Full support", features: ["Full day", "Enrichment classes", "Extended hours"] },
]}
/>
</div>
@@ -147,28 +82,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."
/>
@@ -176,4 +91,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}