Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9a005de2bf | |||
| 9c1845a86a | |||
| e9eb713346 |
@@ -1,43 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Public_Sans } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const publicSans = Public_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-public-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "GearFlow - Premium Sports & Outdoor Gear", description: "Shop premium athletic gear, outdoor equipment, and lifestyle essentials. Trusted by athletes worldwide with 30-day returns and fast shipping.", keywords: "sports gear, outdoor equipment, athletic shoes, performance gear, sports equipment store", openGraph: {
|
title: "GearFlow - Premium Sports & Outdoor Gear", description: "Discover premium sports equipment and outdoor gear trusted by 500K+ athletes. Shop the latest in performance gear, outdoor equipment, and lifestyle essentials."};
|
||||||
title: "GearFlow - Premium Sports & Outdoor Gear", description: "Discover premium gear engineered for performance. Shop the latest in sports equipment, outdoor gear, and lifestyle essentials.", siteName: "GearFlow", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/top-view-travel-kit-elements-table_23-2148315718.jpg", alt: "GearFlow Premium Gear Collection"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "GearFlow - Premium Sports & Outdoor Gear", description: "Premium athletic and outdoor gear trusted by athletes worldwide."},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1405,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroBillboard
|
||||||
title="Discover Your Next Gear"
|
title="Discover Your Next Gear"
|
||||||
description="Premium equipment engineered for performance. Shop the latest in sports gear, outdoor equipment, and lifestyle essentials."
|
description="Trusted by 500K+ athletes. Get the gear that powers your peak performance."
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
tag="Welcome to GearFlow"
|
tag="Welcome to GearFlow"
|
||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
@@ -64,12 +64,9 @@ export default function LandingPage() {
|
|||||||
tag="New Arrivals"
|
tag="New Arrivals"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
products={[
|
products={[
|
||||||
{
|
{ id: "1", name: "Motion Runner Pro", price: "$149.99", imageSrc: "http://img.b2bpic.net/free-photo/canvas-sneakers-green-model-tying-shoelaces-apparel-ad_53876-101198.jpg", imageAlt: "Motion Runner Pro athletic shoe"},
|
||||||
id: "1", name: "Motion Runner Pro", price: "$149.99", imageSrc: "http://img.b2bpic.net/free-photo/canvas-sneakers-green-model-tying-shoelaces-apparel-ad_53876-101198.jpg", imageAlt: "Motion Runner Pro athletic shoe"},
|
{ id: "2", name: "Pro Performance Backpack", price: "$199.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-backpack-beside-seaside_23-2148300688.jpg", imageAlt: "Pro Performance Backpack travel gear"},
|
||||||
{
|
{ id: "3", name: "Tech Performance Watch", price: "$299.99", imageSrc: "http://img.b2bpic.net/free-photo/smartwatch-with-digital-assistant-arrangement_23-2149108009.jpg", imageAlt: "Tech Performance Watch smartwatch"},
|
||||||
id: "2", name: "Pro Performance Backpack", price: "$199.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-backpack-beside-seaside_23-2148300688.jpg", imageAlt: "Pro Performance Backpack travel gear"},
|
|
||||||
{
|
|
||||||
id: "3", name: "Tech Performance Watch", price: "$299.99", imageSrc: "http://img.b2bpic.net/free-photo/smartwatch-with-digital-assistant-arrangement_23-2149108009.jpg", imageAlt: "Tech Performance Watch smartwatch"},
|
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -86,16 +83,13 @@ export default function LandingPage() {
|
|||||||
tagIcon={Award}
|
tagIcon={Award}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1, tag: "Built to Last", title: "Engineered Durability", subtitle: "Tested for resilience", description: "Every product undergoes rigorous durability testing to ensure it withstands intense activity and extreme conditions. Our materials are sourced from industry leaders and reinforced for maximum longevity.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-microperforated-sheets-still-life_23-2150260315.jpg", imageAlt: "Durability testing process", buttons: [{ text: "View Details", href: "#" }],
|
||||||
tag: "Built to Last", title: "Engineered Durability", subtitle: "Tested for resilience", description: "Every product undergoes rigorous durability testing to ensure it withstands intense activity and extreme conditions. Our materials are sourced from industry leaders and reinforced for maximum longevity.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-microperforated-sheets-still-life_23-2150260315.jpg", imageAlt: "Durability testing process", buttons: [{ text: "View Details", href: "#" }],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2, tag: "Next Generation", title: "Cutting-Edge Innovation", subtitle: "Technology that performs", description: "We invest heavily in R&D to bring you the latest advancements in sports gear technology. From smart integration to advanced materials, innovation drives everything we do.", imageSrc: "http://img.b2bpic.net/free-photo/mature-watchmaker-is-working-with-witschi-analyzer-q1-his-own-studio_613910-21419.jpg", imageAlt: "Innovation lab technology", buttons: [{ text: "Explore Tech", href: "#" }],
|
||||||
tag: "Next Generation", title: "Cutting-Edge Innovation", subtitle: "Technology that performs", description: "We invest heavily in R&D to bring you the latest advancements in sports gear technology. From smart integration to advanced materials, innovation drives everything we do.", imageSrc: "http://img.b2bpic.net/free-photo/mature-watchmaker-is-working-with-witschi-analyzer-q1-his-own-studio_613910-21419.jpg", imageAlt: "Innovation lab technology", buttons: [{ text: "Explore Tech", href: "#" }],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3, tag: "Proven Results", title: "Optimized Performance", subtitle: "Data-driven excellence", description: "Our gear is trusted by elite athletes and professionals worldwide. Real-world testing and athlete feedback shape every design decision to deliver measurable performance gains.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-doing-sport-with-stats_23-2150040500.jpg", imageAlt: "Performance measurement analytics", buttons: [{ text: "See Performance", href: "#" }],
|
||||||
tag: "Proven Results", title: "Optimized Performance", subtitle: "Data-driven excellence", description: "Our gear is trusted by elite athletes and professionals worldwide. Real-world testing and athlete feedback shape every design decision to deliver measurable performance gains.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-doing-sport-with-stats_23-2150040500.jpg", imageAlt: "Performance measurement analytics", buttons: [{ text: "See Performance", href: "#" }],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
|||||||
Reference in New Issue
Block a user