Update src/app/classes/page.tsx

This commit is contained in:
2026-04-11 15:40:02 +00:00
parent 4c065679c8
commit 05f61ce7fb

View File

@@ -25,28 +25,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Vendors",
id: "/vendors",
},
{
name: "Classes",
id: "/classes",
},
{
name: "About",
id: "/about",
},
{
name: "Visit",
id: "/visit",
},
{ name: "Home", id: "/" },
{ name: "Vendors", id: "/vendors" },
{ name: "Classes", id: "/classes" },
{ name: "About", id: "/about" },
{ name: "Visit", id: "/visit" },
]}
brandName="gilded nest"
button={{ text: "Sign Up", href: "#product" }}
/>
</div>
@@ -58,24 +44,8 @@ export default function LandingPage() {
title="Upcoming Workshops"
description="Master your own craft with our experts."
metrics={[
{
id: "c1",
value: "10+",
title: "Classes Monthly",
items: [
"Pottery",
"Weaving",
],
},
{
id: "c2",
value: "500+",
title: "Happy Students",
items: [
"Beginners",
"Advanced",
],
},
{ id: "c1", value: "10+", title: "Classes Monthly", items: ["Pottery", "Weaving"] },
{ id: "c2", value: "500+", title: "Happy Students", items: ["Beginners", "Advanced"] }
]}
/>
</div>
@@ -89,18 +59,9 @@ export default function LandingPage() {
title="Register for a Class"
description="Secure your spot in our upcoming workshops."
products={[
{
id: "p1",
name: "Pottery Basics",
price: "$45",
imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-pottery-masterpiece-her-workshop_23-2148846477.jpg",
},
{
id: "p2",
name: "Soy Candle Making",
price: "$30",
imageSrc: "http://img.b2bpic.net/free-photo/lavender-soap-assortment-with-copy-space_23-2148799499.jpg",
},
{ id: "p1", name: "Pottery Basics", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-pottery-masterpiece-her-workshop_23-2148846477.jpg" },
{ id: "p2", name: "Soy Candle Making", price: "$30", imageSrc: "http://img.b2bpic.net/free-photo/lavender-soap-assortment-with-copy-space_23-2148799499.jpg" },
{ id: "p3", name: "Weaving 101", price: "$55", imageSrc: "http://img.b2bpic.net/free-photo/hand-woven-textiles-arrangement_23-2149072887.jpg" }
]}
/>
</div>
@@ -108,32 +69,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Shop",
items: [
{
label: "Vendors",
href: "/vendors",
},
{
label: "Bookstore",
href: "/bookstore",
},
],
},
{
title: "Visit",
items: [
{
label: "Hours & Map",
href: "/visit",
},
{
label: "Community",
href: "/about",
},
],
},
{ title: "Shop", items: [{ label: "Vendors", href: "/vendors" }, { label: "Bookstore", href: "/bookstore" }] },
{ title: "Visit", items: [{ label: "Hours & Map", href: "/visit" }, { label: "Community", href: "/about" }] }
]}
logoText="gilded nest"
/>
@@ -141,4 +78,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}