Merge version_1 into main #2
@@ -28,13 +28,9 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Book Now",
|
||||
id: "/booking",
|
||||
},
|
||||
name: "Book Now", id: "/booking"},
|
||||
]}
|
||||
brandName="Divya Jyot"
|
||||
/>
|
||||
@@ -47,39 +43,21 @@ export default function LandingPage() {
|
||||
description="Select your sport, date, and time."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Name",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Phone Number",
|
||||
required: true,
|
||||
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
|
||||
},
|
||||
{
|
||||
name: "date",
|
||||
type: "date",
|
||||
placeholder: "Select Date",
|
||||
required: true,
|
||||
name: "date", type: "date", placeholder: "Select Date", required: true,
|
||||
},
|
||||
{
|
||||
name: "time",
|
||||
type: "time",
|
||||
placeholder: "Select Time Slot",
|
||||
required: true,
|
||||
name: "time", type: "time", placeholder: "Select Time Slot", required: true,
|
||||
},
|
||||
]}
|
||||
multiSelect={{
|
||||
name: "sport",
|
||||
label: "Select Sport",
|
||||
options: [
|
||||
"Box Cricket",
|
||||
"Football",
|
||||
"Basketball",
|
||||
"Pickleball",
|
||||
],
|
||||
name: "sport", label: "Select Sport", options: [
|
||||
"Box Cricket", "Football", "Basketball", "Pickleball"],
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-dark-diagonal-stripes-background_84443-82398.jpg"
|
||||
buttonText="Confirm Booking"
|
||||
@@ -92,11 +70,8 @@ export default function LandingPage() {
|
||||
title="Booking Privacy Policy"
|
||||
sections={[
|
||||
{
|
||||
heading: "Data Usage",
|
||||
content: {
|
||||
type: "paragraph",
|
||||
text: "Your personal details are used solely to facilitate your booking and communication with the academy management.",
|
||||
},
|
||||
heading: "Data Usage", content: {
|
||||
text: "Your personal details are used solely to facilitate your booking and communication with the academy management."},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -119,29 +94,19 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Academy",
|
||||
items: [
|
||||
title: "Academy", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#",
|
||||
},
|
||||
label: "About Us", href: "#"},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "#",
|
||||
},
|
||||
label: "Pricing", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#",
|
||||
},
|
||||
label: "Contact", href: "#"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#",
|
||||
},
|
||||
label: "FAQ", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -30,13 +30,9 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Book Now",
|
||||
id: "/booking",
|
||||
},
|
||||
name: "Book Now", id: "/booking"},
|
||||
]}
|
||||
brandName="Divya Jyot"
|
||||
/>
|
||||
@@ -45,17 +41,14 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
title="Divya Jyot Sports Academy"
|
||||
description="Book Your Game. Play Your Passion."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Now",
|
||||
href: "/booking",
|
||||
},
|
||||
text: "Book Now", href: "/booking"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-doing-sports-with-disabilities_23-2149067347.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-doing-sports-with-disabilities_23-2149067347.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -67,24 +60,16 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
icon: Trophy,
|
||||
title: "Box Cricket",
|
||||
description: "High-intensity indoor cricket matches.",
|
||||
},
|
||||
title: "Box Cricket", description: "High-intensity indoor cricket matches."},
|
||||
{
|
||||
icon: Activity,
|
||||
title: "Football",
|
||||
description: "Dynamic turf for football enthusiasts.",
|
||||
},
|
||||
title: "Football", description: "Dynamic turf for football enthusiasts."},
|
||||
{
|
||||
icon: Target,
|
||||
title: "Basketball",
|
||||
description: "Full-court play for competitive games.",
|
||||
},
|
||||
title: "Basketball", description: "Full-court play for competitive games."},
|
||||
{
|
||||
icon: Award,
|
||||
title: "Pickleball",
|
||||
description: "Popular court sport for all ages.",
|
||||
},
|
||||
title: "Pickleball", description: "Popular court sport for all ages."},
|
||||
]}
|
||||
title="Our Sports"
|
||||
description="Choose your arena and play your favorite game."
|
||||
@@ -97,9 +82,7 @@ export default function LandingPage() {
|
||||
title="Ready to Play?"
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Your Slot",
|
||||
href: "/booking",
|
||||
},
|
||||
text: "Book Your Slot", href: "/booking"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -112,23 +95,9 @@ export default function LandingPage() {
|
||||
description="What our athletes have to say about the academy."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Great Experience",
|
||||
quote: "The turf quality is exceptional. Best in the city!",
|
||||
name: "Rahul S.",
|
||||
role: "Cricket Enthusiast",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cricket-equipment-digital-art_23-2151761280.jpg",
|
||||
imageAlt: "box cricket icon minimal",
|
||||
},
|
||||
id: "1", title: "Great Experience", quote: "The turf quality is exceptional. Best in the city!", name: "Rahul S.", role: "Cricket Enthusiast", imageSrc: "http://img.b2bpic.net/free-photo/cricket-equipment-digital-art_23-2151761280.jpg", imageAlt: "box cricket icon minimal"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Perfect Venue",
|
||||
quote: "Well-lit and maintained courts for basketball.",
|
||||
name: "Anjali M.",
|
||||
role: "Basketball Player",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-doing-sports-with-disabilities_23-2149067347.jpg?_wi=2",
|
||||
imageAlt: "box cricket icon minimal",
|
||||
},
|
||||
id: "2", title: "Perfect Venue", quote: "Well-lit and maintained courts for basketball.", name: "Anjali M.", role: "Basketball Player", imageSrc: "http://img.b2bpic.net/free-photo/people-doing-sports-with-disabilities_23-2149067347.jpg", imageAlt: "box cricket icon minimal"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -139,11 +108,8 @@ export default function LandingPage() {
|
||||
title="Terms & Conditions"
|
||||
sections={[
|
||||
{
|
||||
heading: "Booking Policy",
|
||||
content: {
|
||||
type: "paragraph",
|
||||
text: "All bookings must be made at least 2 hours in advance. Cancellations must be notified 24 hours prior to avoid penalties.",
|
||||
},
|
||||
heading: "Booking Policy", content: {
|
||||
text: "All bookings must be made at least 2 hours in advance. Cancellations must be notified 24 hours prior to avoid penalties."},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -153,29 +119,19 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Academy",
|
||||
items: [
|
||||
title: "Academy", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#",
|
||||
},
|
||||
label: "About Us", href: "#"},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "#",
|
||||
},
|
||||
label: "Pricing", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#",
|
||||
},
|
||||
label: "Contact", href: "#"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#",
|
||||
},
|
||||
label: "FAQ", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user