Update src/app/schedule/page.tsx
This commit is contained in:
@@ -19,83 +19,41 @@ export default function SchedulePage() {
|
||||
|
||||
const instructors = [
|
||||
{
|
||||
id: "1",
|
||||
name: "Margaret Johnson",
|
||||
role: "Piano Instructor",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-a-piano-instruc-1773149958833-7e1afaf0.png?_wi=5",
|
||||
imageAlt: "Margaret Johnson piano instructor",
|
||||
},
|
||||
id: "1", name: "Margaret Johnson", role: "Piano Instructor", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-a-piano-instruc-1773149958833-7e1afaf0.png", imageAlt: "Margaret Johnson piano instructor"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Jessica Lee",
|
||||
role: "Dance Instructor",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-a-dance-instruc-1773149955255-d32fb4cc.jpg?_wi=4",
|
||||
imageAlt: "Jessica Lee dance instructor",
|
||||
},
|
||||
id: "2", name: "Jessica Lee", role: "Dance Instructor", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-a-dance-instruc-1773149955255-d32fb4cc.jpg", imageAlt: "Jessica Lee dance instructor"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Marcus Williams",
|
||||
role: "Yoga Instructor",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-a-yoga-instruct-1773149958540-4c8fc93c.jpg?_wi=4",
|
||||
imageAlt: "Marcus Williams yoga instructor",
|
||||
},
|
||||
id: "3", name: "Marcus Williams", role: "Yoga Instructor", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-a-yoga-instruct-1773149958540-4c8fc93c.jpg", imageAlt: "Marcus Williams yoga instructor"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sofia Rossi",
|
||||
role: "Art Instructor",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-an-art-instruct-1773149958976-9ea3327d.png?_wi=2",
|
||||
imageAlt: "Sofia Rossi art instructor",
|
||||
},
|
||||
id: "4", name: "Sofia Rossi", role: "Art Instructor", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-an-art-instruct-1773149958976-9ea3327d.png", imageAlt: "Sofia Rossi art instructor"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Ahmed Hassan",
|
||||
role: "Language Instructor",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-a-language-inst-1773149958360-43c50b1b.jpg?_wi=2",
|
||||
imageAlt: "Ahmed Hassan language instructor",
|
||||
},
|
||||
id: "5", name: "Ahmed Hassan", role: "Language Instructor", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-a-language-inst-1773149958360-43c50b1b.jpg", imageAlt: "Ahmed Hassan language instructor"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Lisa Anderson",
|
||||
role: "Fitness Instructor",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-a-fitness-instr-1773149958873-1119546c.png?_wi=2",
|
||||
imageAlt: "Lisa Anderson fitness instructor",
|
||||
},
|
||||
id: "6", name: "Lisa Anderson", role: "Fitness Instructor", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-portrait-of-a-fitness-instr-1773149958873-1119546c.png", imageAlt: "Lisa Anderson fitness instructor"},
|
||||
];
|
||||
|
||||
const scheduleFeatures = [
|
||||
{
|
||||
icon: Calendar,
|
||||
title: "Easy Class Discovery",
|
||||
description: "Browse upcoming workshops and classes with real-time availability. Filter by category, skill level, instructor, and time slots that fit your schedule.",
|
||||
},
|
||||
title: "Easy Class Discovery", description: "Browse upcoming workshops and classes with real-time availability. Filter by category, skill level, instructor, and time slots that fit your schedule."},
|
||||
{
|
||||
icon: Clock,
|
||||
title: "Flexible Scheduling",
|
||||
description: "View detailed class schedules with instructor bios, duration, capacity, and student reviews. Book at any time that works for you.",
|
||||
},
|
||||
title: "Flexible Scheduling", description: "View detailed class schedules with instructor bios, duration, capacity, and student reviews. Book at any time that works for you."},
|
||||
{
|
||||
icon: Users,
|
||||
title: "Expert Instructors",
|
||||
description: "Learn from verified, professional instructors with years of experience in their fields. Connect with educators who are passionate about teaching.",
|
||||
},
|
||||
title: "Expert Instructors", description: "Learn from verified, professional instructors with years of experience in their fields. Connect with educators who are passionate about teaching."},
|
||||
];
|
||||
|
||||
const socialLinks = [
|
||||
{
|
||||
icon: Twitter,
|
||||
href: "https://twitter.com/classhub",
|
||||
ariaLabel: "Follow ClassHub on Twitter",
|
||||
},
|
||||
href: "https://twitter.com/classhub", ariaLabel: "Follow ClassHub on Twitter"},
|
||||
{
|
||||
icon: Linkedin,
|
||||
href: "https://linkedin.com/company/classhub",
|
||||
ariaLabel: "Follow ClassHub on LinkedIn",
|
||||
},
|
||||
href: "https://linkedin.com/company/classhub", ariaLabel: "Follow ClassHub on LinkedIn"},
|
||||
{
|
||||
icon: Mail,
|
||||
href: "mailto:hello@classhub.com",
|
||||
ariaLabel: "Email ClassHub",
|
||||
},
|
||||
href: "mailto:hello@classhub.com", ariaLabel: "Email ClassHub"},
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -105,7 +63,7 @@ export default function SchedulePage() {
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLarge"
|
||||
background="grid"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
@@ -129,15 +87,15 @@ export default function SchedulePage() {
|
||||
description="Discover and book world-class workshops and classes taught by expert instructors. View live availability and secure your spot today."
|
||||
tag="Updated Daily"
|
||||
tagIcon={Calendar}
|
||||
background={{ variant: "grid" }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-banner-image-showing-a-dive-1773149958687-87f99901.jpg?_wi=6"
|
||||
background={{ variant: "animated-grid" }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkwR5I869xG7mvZJi1gLiW16GY/professional-banner-image-showing-a-dive-1773149958687-87f99901.jpg"
|
||||
imageAlt="Professional workshop training environment"
|
||||
buttons={[
|
||||
{ text: "View All Classes", href: "/classes" },
|
||||
{ text: "Learn More", href: "/pricing" },
|
||||
]}
|
||||
tagAnimation="slide-up"
|
||||
buttonAnimation="entrance-slide"
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user