Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 02:24:04 +00:00
2 changed files with 40 additions and 91 deletions

View File

@@ -1,70 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const interTight = Inter_Tight({
variable: "--font-inter-tight",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "UrbanStep - Premium Sneaker Store | Quality Athletic Footwear",
description: "Discover premium sneakers from top brands at UrbanStep. Fast shipping, secure payments, and authentic quality. Shop now!",
keywords: "sneakers, premium shoes, athletic footwear, running shoes, casual sneakers",
openGraph: {
title: "UrbanStep - Premium Sneaker Store",
description: "Handpicked collection of quality sneakers and athletic footwear",
type: "website",
siteName: "UrbanStep",
images: [
{
url: "http://img.b2bpic.net/free-photo/sporty-man-tying-his-shoelaces_53876-139586.jpg",
alt: "UrbanStep Premium Sneaker Collection",
},
],
},
twitter: {
card: "summary_large_image",
title: "UrbanStep - Premium Sneakers",
description: "Discover our curated collection of quality sneakers",
images: ["http://img.b2bpic.net/free-photo/sporty-man-tying-his-shoelaces_53876-139586.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "UrbanStep - Premium Sneakers for Everyday Comfort", description: "Discover our curated collection of handpicked athletic footwear designed for performance and lifestyle."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1432,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -114,37 +114,6 @@ export default function HomePage() {
/>
</div>
{/* Why Choose Us Section */}
<div id="why-choose-us" data-section="why-choose-us">
<FeatureCardTwentySix
features={[
{
title: "Fast Shipping", description: "Quick delivery to your doorstep within 3-5 business days across the country.", imageSrc: "http://img.b2bpic.net/free-photo/sporty-man-tying-his-shoelaces_53876-139586.jpg?_wi=2", imageAlt: "Fast shipping service", buttonIcon: Truck,
buttonHref: "/shop"},
{
title: "Secure Payments", description: "Your transactions are protected with industry-leading encryption and multiple payment options.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-s-legs-keds-going-down-stairs_176420-55081.jpg?_wi=3", imageAlt: "Secure payment options", buttonIcon: Shield,
buttonHref: "/shop"},
{
title: "Premium Quality", description: "Carefully curated collection of authentic, high-quality sneakers from trusted brands.", imageSrc: "http://img.b2bpic.net/free-vector/sport-tech-banner-template_23-2148910569.jpg?_wi=3", imageAlt: "Premium quality sneakers", buttonIcon: Award,
buttonHref: "/shop"},
{
title: "Expert Support", description: "Our dedicated team is here to help with sizing, recommendations, and customer service.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-blue-winter-trekking-boots-black-background_181624-25741.jpg", imageAlt: "Expert customer support", buttonIcon: Headphones,
buttonHref: "/contact"},
]}
title="Why Choose UrbanStep"
description="We're committed to providing the best sneaker shopping experience with premium quality, fast shipping, and secure payments."
tag="Our Promise"
tagIcon={CheckCircle}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
ariaLabel="Why choose UrbanStep section with key benefits"
className="why-choose-us"
containerClassName="features-container"
cardClassName="feature-card"
/>
</div>
{/* Testimonials Section */}
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
@@ -181,6 +150,37 @@ export default function HomePage() {
/>
</div>
{/* Why Choose Us Section */}
<div id="why-choose-us" data-section="why-choose-us">
<FeatureCardTwentySix
features={[
{
title: "Fast Shipping", description: "Quick delivery to your doorstep within 3-5 business days across the country.", imageSrc: "http://img.b2bpic.net/free-photo/sporty-man-tying-his-shoelaces_53876-139586.jpg?_wi=2", imageAlt: "Fast shipping service", buttonIcon: Truck,
buttonHref: "/shop"},
{
title: "Secure Payments", description: "Your transactions are protected with industry-leading encryption and multiple payment options.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-s-legs-keds-going-down-stairs_176420-55081.jpg?_wi=3", imageAlt: "Secure payment options", buttonIcon: Shield,
buttonHref: "/shop"},
{
title: "Premium Quality", description: "Carefully curated collection of authentic, high-quality sneakers from trusted brands.", imageSrc: "http://img.b2bpic.net/free-vector/sport-tech-banner-template_23-2148910569.jpg?_wi=3", imageAlt: "Premium quality sneakers", buttonIcon: Award,
buttonHref: "/shop"},
{
title: "Expert Support", description: "Our dedicated team is here to help with sizing, recommendations, and customer service.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-blue-winter-trekking-boots-black-background_181624-25741.jpg", imageAlt: "Expert customer support", buttonIcon: Headphones,
buttonHref: "/contact"},
]}
title="Why Choose UrbanStep"
description="We're committed to providing the best sneaker shopping experience with premium quality, fast shipping, and secure payments."
tag="Our Promise"
tagIcon={CheckCircle}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
ariaLabel="Why choose UrbanStep section with key benefits"
className="why-choose-us"
containerClassName="features-container"
cardClassName="feature-card"
/>
</div>
{/* Social Proof Section */}
<div id="social-proof" data-section="social-proof">
<SocialProofOne
@@ -215,4 +215,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}