Merge version_1 into main #2
330
src/app/page.tsx
330
src/app/page.tsx
@@ -12,7 +12,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import { Award, CheckCircle, Star } from "lucide-react";
|
||||
import { Award, CheckCircle, Star, Zap, Scale, UserCheck } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,26 +32,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Cricketing Doctorz"
|
||||
/>
|
||||
@@ -59,104 +44,29 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Elite Cricket Bats & Professional Gear"
|
||||
description="Premium English and Kashmir willow bats expertly crafted for performance. Trust the choice of dedicated players at Cricketing Doctorz."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Rahul Moharkar",
|
||||
handle: "@cricketfan",
|
||||
testimonial: "GREAT PLACE TO BUY Season ball bats. They have a great variety of English and Kashmir willow bats.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-looking-clothes-thrift-shop-side-view_23-2150082896.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Sunil Tiwari",
|
||||
handle: "@player",
|
||||
testimonial: "Good quality bat, super punch and edges. Very good quality and ready to play.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-sporty-man-wearing-wristband-his-thumbs-up-isolated-green_141793-72880.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Bhuvan Bhuvan",
|
||||
handle: "@expert",
|
||||
testimonial: "Good quality of the bat, low price. Last week I purchased, very good quality.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/concept-sport-fitness-lifestyle-portrait-cheerful-middleaged-male-athlete-smiling-pleased_1258-137716.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Vikram Singh",
|
||||
handle: "@proplayer",
|
||||
testimonial: "Excellent service and top-tier willow. Highly recommended for professionals.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-baseball_23-2151207853.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Ananya Sharma",
|
||||
handle: "@cricketlover",
|
||||
testimonial: "The best place in town for specialized cricket equipment. Friendly staff.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-elegant-man-smiling_23-2148332976.jpg?_wi=1",
|
||||
},
|
||||
{ name: "Rahul Moharkar", handle: "@cricketfan", testimonial: "GREAT PLACE TO BUY Season ball bats. They have a great variety of English and Kashmir willow bats.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-looking-clothes-thrift-shop-side-view_23-2150082896.jpg" },
|
||||
{ name: "Sunil Tiwari", handle: "@player", testimonial: "Good quality bat, super punch and edges. Very good quality and ready to play.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-sporty-man-wearing-wristband-his-thumbs-up-isolated-green_141793-72880.jpg" },
|
||||
{ name: "Bhuvan Bhuvan", handle: "@expert", testimonial: "Good quality of the bat, low price. Last week I purchased, very good quality.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/concept-sport-fitness-lifestyle-portrait-cheerful-middleaged-male-athlete-smiling-pleased_1258-137716.jpg" },
|
||||
{ name: "Vikram Singh", handle: "@proplayer", testimonial: "Excellent service and top-tier willow. Highly recommended for professionals.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-baseball_23-2151207853.jpg" },
|
||||
{ name: "Ananya Sharma", handle: "@cricketlover", testimonial: "The best place in town for specialized cricket equipment. Friendly staff.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-young-elegant-man-smiling_23-2148332976.jpg" }
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:+1234567890",
|
||||
},
|
||||
{
|
||||
text: "View Catalog",
|
||||
href: "#products",
|
||||
},
|
||||
{ text: "Call Now", href: "tel:+1234567890" },
|
||||
{ text: "View Catalog", href: "#products" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/red-cord-slings-therapeutic-exercises-neuromuscular-activation_169016-39477.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/red-cord-slings-therapeutic-exercises-neuromuscular-activation_169016-39477.jpg"
|
||||
imageAlt="Professional cricket bats selection"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/world-photography-day-celebration_23-2151644707.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-brunette-sexy-slim-girl-doing-workout-gym_627829-9263.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/active-young-people-playing-squash_329181-13288.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/mechanic-with-folded-arms-standing-bicycle-workshop_23-2147892356.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-soccer-game-fan-enjoying-match_23-2150860669.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Premium English Willow",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Kashmir Willow Expert",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Fast Shipping",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Pro Knocking Service",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Customized Balance",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/world-photography-day-celebration_23-2151644707.jpg", alt: "Customer 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-brunette-sexy-slim-girl-doing-workout-gym_627829-9263.jpg", alt: "Customer 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/active-young-people-playing-squash_329181-13288.jpg", alt: "Customer 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/mechanic-with-folded-arms-standing-bicycle-workshop_23-2147892356.jpg", alt: "Customer 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-soccer-game-fan-enjoying-match_23-2150860669.jpg", alt: "Customer 5" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -165,12 +75,7 @@ export default function LandingPage() {
|
||||
<TextAbout
|
||||
useInvertedBackground={true}
|
||||
title="The Cricket Experts Near You"
|
||||
buttons={[
|
||||
{
|
||||
text: "Visit Our Shop",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Visit Our Shop", href: "#contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -179,34 +84,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Premium Willow",
|
||||
description: "Hand-selected English and Kashmir willow for unmatched durability.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-deluxe-ski-complex-winter_482257-76604.jpg",
|
||||
imageAlt: "Empty deluxe ski complex during winter",
|
||||
},
|
||||
{
|
||||
title: "Perfect Balance",
|
||||
description: "Expertly crafted bats optimized for weight distribution and power.",
|
||||
buttonIcon: "Scale",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/red-cord-slings-therapeutic-exercises-neuromuscular-activation_169016-39477.jpg?_wi=2",
|
||||
imageAlt: "Empty deluxe ski complex during winter",
|
||||
},
|
||||
{
|
||||
title: "Ready to Play",
|
||||
description: "Professional oiling and knocking-in service for immediate use.",
|
||||
buttonIcon: "CheckCircle",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-with-neatly-organized-arranged-sport-items_23-2150275282.jpg?_wi=1",
|
||||
imageAlt: "Empty deluxe ski complex during winter",
|
||||
},
|
||||
{
|
||||
title: "Customized Gear",
|
||||
description: "Tailored recommendations based on your unique playstyle.",
|
||||
buttonIcon: "UserCheck",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-composition-with-neatly-arranged-organized-sport-items_23-2150275221.jpg?_wi=1",
|
||||
imageAlt: "Empty deluxe ski complex during winter",
|
||||
},
|
||||
{ title: "Premium Willow", description: "Hand-selected English and Kashmir willow for unmatched durability.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/empty-deluxe-ski-complex-winter_482257-76604.jpg", imageAlt: "Empty deluxe ski complex during winter" },
|
||||
{ title: "Perfect Balance", description: "Expertly crafted bats optimized for weight distribution and power.", buttonIcon: Scale, imageSrc: "http://img.b2bpic.net/free-photo/red-cord-slings-therapeutic-exercises-neuromuscular-activation_169016-39477.jpg", imageAlt: "Empty deluxe ski complex during winter" },
|
||||
{ title: "Ready to Play", description: "Professional oiling and knocking-in service for immediate use.", buttonIcon: CheckCircle, imageSrc: "http://img.b2bpic.net/free-photo/composition-with-neatly-organized-arranged-sport-items_23-2150275282.jpg", imageAlt: "Empty deluxe ski complex during winter" },
|
||||
{ title: "Customized Gear", description: "Tailored recommendations based on your unique playstyle.", buttonIcon: UserCheck, imageSrc: "http://img.b2bpic.net/free-photo/top-view-composition-with-neatly-arranged-organized-sport-items_23-2150275221.jpg", imageAlt: "Empty deluxe ski complex during winter" }
|
||||
]}
|
||||
title="Why Players Trust Us"
|
||||
description="Experience professional service designed to elevate your game with every strike."
|
||||
@@ -220,42 +101,12 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "English Willow Pro",
|
||||
price: "$299",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-with-neatly-organized-arranged-sport-items_23-2150275282.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Kashmir Willow Classic",
|
||||
price: "$129",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-composition-with-neatly-arranged-organized-sport-items_23-2150275221.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Training Leather Ball",
|
||||
price: "$15",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-holding-ball-hand_23-2148347963.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Professional Bat Cover",
|
||||
price: "$45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cricketer-field-action_53876-63346.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Pro Batting Gloves",
|
||||
price: "$85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-male-baseball-player-field_23-2150982732.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Protective Leg Pads",
|
||||
price: "$110",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-worker-with-protective-glasses-reflective-vest_23-2148773499.jpg",
|
||||
},
|
||||
{ id: "p1", name: "English Willow Pro", price: "$299", imageSrc: "http://img.b2bpic.net/free-photo/composition-with-neatly-organized-arranged-sport-items_23-2150275282.jpg" },
|
||||
{ id: "p2", name: "Kashmir Willow Classic", price: "$129", imageSrc: "http://img.b2bpic.net/free-photo/top-view-composition-with-neatly-arranged-organized-sport-items_23-2150275221.jpg" },
|
||||
{ id: "p3", name: "Training Leather Ball", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-holding-ball-hand_23-2148347963.jpg" },
|
||||
{ id: "p4", name: "Professional Bat Cover", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/cricketer-field-action_53876-63346.jpg" },
|
||||
{ id: "p5", name: "Pro Batting Gloves", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/view-male-baseball-player-field_23-2150982732.jpg" },
|
||||
{ id: "p6", name: "Protective Leg Pads", price: "$110", imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-worker-with-protective-glasses-reflective-vest_23-2148773499.jpg" }
|
||||
]}
|
||||
title="Our Latest Collection"
|
||||
description="Browse our hand-picked inventory of professional-grade cricket equipment."
|
||||
@@ -267,46 +118,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "Amazing Quality",
|
||||
quote: "The bat punch is incredible. Best in the city.",
|
||||
name: "Sunil Tiwari",
|
||||
role: "Local Player",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-looking-clothes-thrift-shop-side-view_23-2150082896.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Great Variety",
|
||||
quote: "Excellent collection, you can find everything you need.",
|
||||
name: "Rahul Moharkar",
|
||||
role: "Pro Cricketer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-sporty-man-wearing-wristband-his-thumbs-up-isolated-green_141793-72880.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
title: "Good Price",
|
||||
quote: "High quality equipment at a very reasonable price.",
|
||||
name: "Bhuvan",
|
||||
role: "Enthusiast",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/concept-sport-fitness-lifestyle-portrait-cheerful-middleaged-male-athlete-smiling-pleased_1258-137716.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
title: "Fast Service",
|
||||
quote: "Highly recommended for all cricket gear needs.",
|
||||
name: "Shubham A.",
|
||||
role: "Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-baseball_23-2151207853.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
title: "Perfect Balance",
|
||||
quote: "The bat I purchased feels perfectly balanced.",
|
||||
name: "Rugved R.",
|
||||
role: "Batting Expert",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-elegant-man-smiling_23-2148332976.jpg?_wi=2",
|
||||
},
|
||||
{ id: "t1", title: "Amazing Quality", quote: "The bat punch is incredible. Best in the city.", name: "Sunil Tiwari", role: "Local Player", imageSrc: "http://img.b2bpic.net/free-photo/people-looking-clothes-thrift-shop-side-view_23-2150082896.jpg" },
|
||||
{ id: "t2", title: "Great Variety", quote: "Excellent collection, you can find everything you need.", name: "Rahul Moharkar", role: "Pro Cricketer", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-sporty-man-wearing-wristband-his-thumbs-up-isolated-green_141793-72880.jpg" },
|
||||
{ id: "t3", title: "Good Price", quote: "High quality equipment at a very reasonable price.", name: "Bhuvan", role: "Enthusiast", imageSrc: "http://img.b2bpic.net/free-photo/concept-sport-fitness-lifestyle-portrait-cheerful-middleaged-male-athlete-smiling-pleased_1258-137716.jpg" },
|
||||
{ id: "t4", title: "Fast Service", quote: "Highly recommended for all cricket gear needs.", name: "Shubham A.", role: "Customer", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-baseball_23-2151207853.jpg" },
|
||||
{ id: "t5", title: "Perfect Balance", quote: "The bat I purchased feels perfectly balanced.", name: "Rugved R.", role: "Batting Expert", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-elegant-man-smiling_23-2148332976.jpg" }
|
||||
]}
|
||||
title="Hear From Our Players"
|
||||
description="Authentic feedback from satisfied cricketers who rely on our gear."
|
||||
@@ -320,27 +136,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "500+",
|
||||
title: "Bats Sold",
|
||||
description: "Professional bats delivered.",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "15+",
|
||||
title: "Years Experience",
|
||||
description: "Cricket expert knowledge.",
|
||||
icon: Star,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "98%",
|
||||
title: "Satisfaction",
|
||||
description: "Happy local players.",
|
||||
icon: CheckCircle,
|
||||
},
|
||||
{ id: "m1", value: "500+", title: "Bats Sold", description: "Professional bats delivered.", icon: Award },
|
||||
{ id: "m2", value: "15+", title: "Years Experience", description: "Cricket expert knowledge.", icon: Star },
|
||||
{ id: "m3", value: "98%", title: "Satisfaction", description: "Happy local players.", icon: CheckCircle }
|
||||
]}
|
||||
title="Trusted by Local Players"
|
||||
description="Years of experience serving the cricket community."
|
||||
@@ -351,21 +149,9 @@ export default function LandingPage() {
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do you offer bat knocking?",
|
||||
content: "Yes, we provide professional knocking-in services for all our bats.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Can I visit the shop?",
|
||||
content: "Yes! You are welcome to visit our shop to test bats in person.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Do you ship across India?",
|
||||
content: "We primarily focus on local service but offer shipping options for serious enthusiasts.",
|
||||
},
|
||||
{ id: "f1", title: "Do you offer bat knocking?", content: "Yes, we provide professional knocking-in services for all our bats." },
|
||||
{ id: "f2", title: "Can I visit the shop?", content: "Yes! You are welcome to visit our shop to test bats in person." },
|
||||
{ id: "f3", title: "Do you ship across India?", content: "We primarily focus on local service but offer shipping options for serious enthusiasts." }
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -375,9 +161,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get In Touch"
|
||||
title="Need Advice on Your Bat?"
|
||||
description="Call us today or send a message, and our experts will help you find the perfect match."
|
||||
@@ -388,32 +172,8 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="Cricketing Doctorz"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Bat Selection",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "Repair & Oiling",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Services", items: [{ label: "Bat Selection", href: "#products" }, { label: "Repair & Oiling", href: "#" }] },
|
||||
{ title: "Support", items: [{ label: "Contact Us", href: "#contact" }, { label: "Privacy Policy", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user