Update src/app/lessons/page.tsx

This commit is contained in:
2026-05-19 07:31:45 +00:00
parent 843953d463
commit 47df278ef4

View File

@@ -24,25 +24,9 @@ export default function LandingPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Lessons",
id: "/lessons",
},
{
name: "Contact",
id: "/contact",
},
]}
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Lessons", id: "/lessons" }, { name: "Contact", id: "/contact" }]}
brandName="Aqua Start"
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
@@ -52,60 +36,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
plans={[
{
id: "p1",
title: "Beginner",
price: "$25",
period: "per lesson",
features: [
"Age 3-5",
"Water entry",
"Bubbles",
"Floating",
],
button: {
text: "Enquire",
href: "/contact",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=al8z34&_wi=2",
imageAlt: "parent talking to swim instructor at pool",
},
{
id: "p2",
title: "Intermediate",
price: "$25",
period: "per lesson",
features: [
"Age 5-8",
"Stroke technique",
"Diving",
"Survival",
],
button: {
text: "Enquire",
href: "/contact",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=wovajs&_wi=2",
imageAlt: "parent talking to swim instructor at pool",
},
{
id: "p3",
title: "Advanced",
price: "$25",
period: "per lesson",
features: [
"Age 8+",
"Advanced strokes",
"Stamina",
"Lifesaving",
],
button: {
text: "Enquire",
href: "/contact",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=970zur&_wi=2",
imageAlt: "parent talking to swim instructor at pool",
},
{ id: "p1", title: "Beginner", price: "$25", period: "per lesson", features: ["Age 3-5", "Water entry", "Bubbles", "Floating"], button: { text: "Enquire", href: "/contact" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=al8z34", imageAlt: "parent talking to swim instructor at pool" },
{ id: "p2", title: "Intermediate", price: "$25", period: "per lesson", features: ["Age 5-8", "Stroke technique", "Diving", "Survival"], button: { text: "Enquire", href: "/contact" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=wovajs", imageAlt: "parent talking to swim instructor at pool" },
{ id: "p3", title: "Advanced", price: "$25", period: "per lesson", features: ["Age 8+", "Advanced strokes", "Stamina", "Lifesaving"], button: { text: "Enquire", href: "/contact" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=970zur", imageAlt: "parent talking to swim instructor at pool" }
]}
title="Sunday Lessons"
description="Consistent, quality swimming progression at Stadium 2000."
@@ -119,16 +52,8 @@ export default function LandingPage() {
sideDescription="Not sure which level is right for your child? We are happy to help assess your child's needs."
faqsAnimation="slide-up"
faqs={[
{
id: "l1",
title: "How long is a term?",
content: "Our lessons run in 10-week blocks aligned with school terms.",
},
{
id: "l2",
title: "Can we join late?",
content: "Yes, we accept new swimmers throughout the term subject to availability.",
},
{ id: "l1", title: "How long is a term?", content: "Our lessons run in 10-week blocks aligned with school terms." },
{ id: "l2", title: "Can we join late?", content: "Yes, we accept new swimmers throughout the term subject to availability." }
]}
/>
</div>
@@ -137,32 +62,8 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="Aqua Start Academy"
columns={[
{
title: "Academy",
items: [
{
label: "About",
href: "/about",
},
{
label: "Lessons",
href: "/lessons",
},
],
},
{
title: "Contact",
items: [
{
label: "Enquire",
href: "/contact",
},
{
label: "Phone: 021 000 000",
href: "tel:021000000",
},
],
},
{ title: "Academy", items: [{ label: "About", href: "/about" }, { label: "Lessons", href: "/lessons" }] },
{ title: "Contact", items: [{ label: "Enquire", href: "/contact" }, { label: "Phone: 021 000 000", href: "tel:021000000" }] }
]}
/>
</div>