From 27c9f48837e90568b449ee724f847e2caa36606f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 03:48:40 +0000 Subject: [PATCH] Update src/app/classes/page.tsx --- src/app/classes/page.tsx | 127 +++++---------------------------------- 1 file changed, 16 insertions(+), 111 deletions(-) diff --git a/src/app/classes/page.tsx b/src/app/classes/page.tsx index aea03a4..abaa141 100644 --- a/src/app/classes/page.tsx +++ b/src/app/classes/page.tsx @@ -8,7 +8,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import { Users, Wrench } from "lucide-react"; -export default function LandingPage() { +export default function ClassesPage() { return ( @@ -59,36 +45,9 @@ export default function LandingPage() { title="Classes & Events" description="Join us for upcoming workshops, seasonal events, and fun in-store gatherings." blogs={[ - { - id: "e1", - category: "Workshop", - title: "Handmade Candle Making", - excerpt: "Learn the art of pouring your own soy candles.", - imageSrc: "http://img.b2bpic.net/free-photo/men-working-with-clay-medium-shot_23-2149644915.jpg", - authorName: "Main Street Staff", - authorAvatar: "http://img.b2bpic.net/free-photo/happy-waiter-with-arms-crossed-standing-open-sign-cafe-s-entrance-looking-camera_637285-6582.jpg", - date: "Oct 12th", - }, - { - id: "e2", - category: "Seasonal", - title: "Fall Market Festival", - excerpt: "Join our vendors for a special seasonal celebration.", - imageSrc: "http://img.b2bpic.net/free-photo/group-friends-planning-trip-cafe_23-2148952368.jpg", - authorName: "Main Street Staff", - authorAvatar: "http://img.b2bpic.net/free-photo/smiley-woman-trying-out-new-clothes_23-2148660713.jpg", - date: "Nov 5th", - }, - { - id: "e3", - category: "Event", - title: "Local Artist Meetup", - excerpt: "Connect with your favorite local creatives.", - imageSrc: "http://img.b2bpic.net/free-photo/vendor-carrying-lemons-customers_482257-102023.jpg", - authorName: "Main Street Staff", - authorAvatar: "http://img.b2bpic.net/free-photo/young-woman-writing-something-her-notebook-greenhouse_23-2148509928.jpg", - date: "Nov 20th", - }, + { id: "e1", category: "Workshop", title: "Handmade Candle Making", excerpt: "Learn the art of pouring your own soy candles.", imageSrc: "http://img.b2bpic.net/free-photo/men-working-with-clay-medium-shot_23-2149644915.jpg", authorName: "Main Street Staff", authorAvatar: "http://img.b2bpic.net/free-photo/happy-waiter-with-arms-crossed-standing-open-sign-cafe-s-entrance-looking-camera_637285-6582.jpg", date: "Oct 12th" }, + { id: "e2", category: "Seasonal", title: "Fall Market Festival", excerpt: "Join our vendors for a special seasonal celebration.", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-planning-trip-cafe_23-2148952368.jpg", authorName: "Main Street Staff", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-woman-trying-out-new-clothes_23-2148660713.jpg", date: "Nov 5th" }, + { id: "e3", category: "Event", title: "Local Artist Meetup", excerpt: "Connect with your favorite local creatives.", imageSrc: "http://img.b2bpic.net/free-photo/vendor-carrying-lemons-customers_482257-102023.jpg", authorName: "Main Street Staff", authorAvatar: "http://img.b2bpic.net/free-photo/young-woman-writing-something-her-notebook-greenhouse_23-2148509928.jpg", date: "Nov 20th" }, ]} /> @@ -102,34 +61,12 @@ export default function LandingPage() { description="Why take a class at Main Street?" features={[ { - title: "Learn Skills", - description: "Hands-on experience.", - icon: Wrench, - mediaItems: [ - { - imageSrc: "http://img.b2bpic.net/free-photo/front-view-people-making-music_23-2151169635.jpg", - }, - { - imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-artist-teaching-group-people-how-draw-sitting-chair-classroom-smiling-camera-positive-atmosphere-drawing-workshop-art-education-sketching-classes-adults_482257-64491.jpg", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-old-house-surrounded-by-autumn-tree-branches_181624-43762.jpg?_wi=2", - imageAlt: "Front view people making music", + title: "Learn Skills", description: "Hands-on experience.", icon: Wrench, + mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/front-view-people-making-music_23-2151169635.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-artist-teaching-group-people-how-draw-sitting-chair-classroom-smiling-camera-positive-atmosphere-drawing-workshop-art-education-sketching-classes-adults_482257-64491.jpg" }] }, { - title: "Meet Peers", - description: "Connect with fellow makers.", - icon: Users, - mediaItems: [ - { - imageSrc: "http://img.b2bpic.net/free-photo/friends-table-with-dog_23-2147716921.jpg", - }, - { - imageSrc: "http://img.b2bpic.net/free-photo/artist-teacher-supervising-draw-class-explaining-illustration-technique-diverse-students-creativity-studio-multiethnic-people-sketching-vase-model-painting-canvas-learning-artistic-skill_482257-41784.jpg", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-golden-ring-rock-concrete-tray_23-2150329670.jpg?_wi=2", - imageAlt: "Front view people making music", + title: "Meet Peers", description: "Connect with fellow makers.", icon: Users, + mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/friends-table-with-dog_23-2147716921.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/artist-teacher-supervising-draw-class-explaining-illustration-technique-diverse-students-creativity-studio-multiethnic-people-sketching-vase-model-painting-canvas-learning-artistic-skill_482257-41784.jpg" }] }, ]} /> @@ -139,40 +76,8 @@ export default function LandingPage() {