Update src/app/page.tsx
This commit is contained in:
@@ -12,7 +12,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import { Award, Users, Zap } from "lucide-react";
|
||||
import { Award, Users, Zap, Target, Baseball, ShieldCheck, UserCheck, Search } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -51,28 +51,17 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="Proven Training Results"
|
||||
metrics={[
|
||||
{ icon: Award, label: "Years Experience", value: "15+" },
|
||||
{ icon: Users, label: "Players Coached", value: "500+" },
|
||||
{ icon: Zap, label: "Drills Perfected", value: "120+" }
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="mastery" data-section="mastery">
|
||||
<FeatureCardMedia
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ id: "f1", title: "Pitching Excellence", description: "Mechanics, pitch grips, and game-management strategies for dominant control.", tag: "Mound", imageSrc: "http://img.b2bpic.net/free-photo/baseball-player-posing-with-glove-ball_23-2148347976.jpg" },
|
||||
{ id: "f2", title: "Elite Infield Play", description: "Footwork, glovework, and split-second decision-making strategies.", tag: "Infield", imageSrc: "http://img.b2bpic.net/free-photo/baseball-player-with-glove-throwing-ball_23-2148347977.jpg" },
|
||||
{ id: "f3", title: "Outfield Dominance", description: "Reads, angles, and powerful throwing mechanics to secure the perimeter.", tag: "Outfield", imageSrc: "http://img.b2bpic.net/free-photo/focused-pretty-thoughtful-serious-gesturing_1134-949.jpg" }
|
||||
{ id: "f1", title: "Mastering Third Base", description: "Corner reactions, glove quickness, and strong arm mechanics for the hot corner.", tag: "Infield", imageSrc: "http://img.b2bpic.net/free-photo/baseball-player-with-glove-throwing-ball_23-2148347977.jpg" },
|
||||
{ id: "f2", title: "Pitching Excellence", description: "Mechanics, pitch grips, and game-management strategies for dominant control.", tag: "Mound", imageSrc: "http://img.b2bpic.net/free-photo/baseball-player-posing-with-glove-ball_23-2148347976.jpg" },
|
||||
{ id: "f3", title: "Catching Fundamentals", description: "Framing, blocking mechanics, and controlling the pace of the game.", tag: "Catcher", imageSrc: "http://img.b2bpic.net/free-photo/male-baseball-player-holding-ball_23-2150982658.jpg" },
|
||||
{ id: "f4", title: "Center Field Vision", description: "Mastering routes, reading fly balls, and coordinating the outfield.", tag: "Outfield", imageSrc: "http://img.b2bpic.net/free-photo/focused-pretty-thoughtful-serious-gesturing_1134-949.jpg" },
|
||||
{ id: "f5", title: "First Base Mastery", description: "Scooping techniques, footwork for double plays, and stretching for outs.", tag: "Infield", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-baseball-glvoe_23-2148347911.jpg" }
|
||||
]}
|
||||
title="Mastery Pathways"
|
||||
description="Comprehensive tactical guides to dominate every single position, from the mound to the outfield."
|
||||
@@ -88,31 +77,13 @@ export default function LandingPage() {
|
||||
products={[
|
||||
{ id: "p1", brand: "ProGlove", name: "Catcher's Elite Mitt", price: "$299", rating: 5, reviewCount: "124", imageSrc: "http://img.b2bpic.net/free-photo/male-baseball-player-holding-ball_23-2150982658.jpg" },
|
||||
{ id: "p2", brand: "SwingMaster", name: "Maple Wood Bat", price: "$150", rating: 4, reviewCount: "89", imageSrc: "http://img.b2bpic.net/free-photo/background-mixed-color-holi-powder_23-2147924648.jpg" },
|
||||
{ id: "p3", brand: "SafeHead", name: "Pro Batting Helmet", price: "$90", rating: 5, reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/view-baseball-ball_23-2150982764.jpg" },
|
||||
{ id: "p4", brand: "ToughGrip", name: "Batting Gloves", price: "$45", rating: 4, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/top-view-baseball-bat-with-glove-ball_23-2148878379.jpg" },
|
||||
{ id: "p5", brand: "Diamond", name: "Official Training Ball", price: "$15", rating: 5, reviewCount: "500", imageSrc: "http://img.b2bpic.net/free-photo/baseball-orange-surface_23-2152015626.jpg" },
|
||||
{ id: "p6", brand: "AgilityGear", name: "Ladder Training Set", price: "$60", rating: 5, reviewCount: "75", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-baseball-glvoe_23-2148347911.jpg" }
|
||||
{ id: "p3", brand: "SafeHead", name: "Pro Batting Helmet", price: "$90", rating: 5, reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/view-baseball-ball_23-2150982764.jpg" }
|
||||
]}
|
||||
title="Essential Gear Breakdown"
|
||||
description="Each position requires specific tools to excel. Shop the essentials here."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardSeven
|
||||
animationType="depth-3d"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "m1", value: "95%", title: "Fielding Accuracy", items: ["Improved footwork", "Consistent glove engagement", "Correct angles"] },
|
||||
{ id: "m2", value: "12%", title: "Bat Speed Increase", items: ["Explosive power", "Mechanics optimization", "Core engagement"] },
|
||||
{ id: "m3", value: "30%", title: "Reaction Speed", items: ["Eye-hand coordination", "Split-second reads", "Alertness drills"] }
|
||||
]}
|
||||
title="Training Metrics"
|
||||
description="Quantifiable progress for every athlete."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
animationType="slide-up"
|
||||
@@ -120,31 +91,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Coach Mark D.", handle: "@coachmark", testimonial: "The tactical breakdowns for infield play are the best in the business.", imageSrc: "http://img.b2bpic.net/free-photo/men-wearing-varsity-jacket_23-2149562632.jpg" },
|
||||
{ id: "t2", name: "Sarah J.", handle: "@sarahj_ball", testimonial: "I increased my pitching speed by 5mph in just two months of training here.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-image-attractive-dark-skinned-girl-wears-stylish-hoodie-stands-outdoor-against-blurred-background_273609-18398.jpg" },
|
||||
{ id: "t3", name: "Robert B.", handle: "@robb_sports", testimonial: "Professional-grade advice that genuinely improved my outfield reads.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-holding-rugby-ball_53876-20496.jpg" },
|
||||
{ id: "t4", name: "Kevin L.", handle: "@kevinl_fan", testimonial: "Clear, concise, and incredibly effective for players of all levels.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-standing-with-baseball-bat_23-2148209625.jpg" },
|
||||
{ id: "t5", name: "Elena R.", handle: "@elenar_fit", testimonial: "DiamondPro transforms your mechanics completely. A game-changer.", imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-wearing-headband-looking-camera-with-serious-confident-expression-with-arms-crossed-standing-white-background_141793-118126.jpg" }
|
||||
{ id: "t2", name: "Sarah J.", handle: "@sarahj_ball", testimonial: "I increased my pitching speed by 5mph in just two months of training here.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-image-attractive-dark-skinned-girl-wears-stylish-hoodie-stands-outdoor-against-blurred-background_273609-18398.jpg" }
|
||||
]}
|
||||
title="Player Testimonials"
|
||||
description="What our athletes have to say about DiamondPro."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "faq1", title: "Do I need prior experience?", content: "Our training is suitable for all levels, from beginners to experienced players." },
|
||||
{ id: "faq2", title: "How often should I train?", content: "Consistency is key. We recommend at least 3-4 sessions per week for optimal results." },
|
||||
{ id: "faq3", title: "Can I train at home?", content: "Absolutely, many of our drills are designed for home use with minimal space." }
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Everything you need to know about starting your baseball mastery."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user