Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 09:43:45 +00:00
2 changed files with 16 additions and 63 deletions

View File

@@ -1,74 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "SHOEMOB | Premium Luxury Shoes & Mobile Accessories",
description: "Own the street with SHOEMOB's curated collection of premium sneakers, luxury shoes, and elite mobile accessories. Experience Apple-level aesthetic and exclusive street-luxury lifestyle.",
keywords: "luxury shoes, premium sneakers, streetwear, mobile accessories, designer footwear, phone cases, wireless earbuds, smartwatch accessories",
metadataBase: new URL("https://shoemob.com"),
alternates: {
canonical: "https://shoemob.com",
},
openGraph: {
title: "SHOEMOB | Premium Luxury Shoes & Mobile Accessories",
description: "Own The Street. Own The Future. Premium Footwear & Elite Mobile Accessories.",
siteName: "SHOEMOB",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8084.jpg",
alt: "SHOEMOB Premium Collection",
},
],
},
twitter: {
card: "summary_large_image",
title: "SHOEMOB | Premium Luxury Shoes & Mobile Accessories",
description: "Own the street with SHOEMOB's premium collection",
images: ["http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8084.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "SHOEMOB - Premium Shoes & Mobile Accessories", description: "Elevate your style with premium footwear and elite mobile accessories from SHOEMOB."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -83,7 +83,7 @@ export default function HomePage() {
<div id="hero" data-section="hero">
<HeroCentered
title="Own The Street. Own The Future."
description="Premium Footwear & Elite Mobile Accessories. Redefine luxury with every step and every connection."
description="Elevate Your Style & Connect in Style. Premium Footwear & Elite Mobile Accessories reimagined for the discerning."
background={{ variant: "plain" }}
avatars={[
{
@@ -91,7 +91,7 @@ export default function HomePage() {
]}
avatarText="Trusted by Premium Enthusiasts"
buttons={[
{ text: "Shop Shoes", href: "#shop" },
{ text: "Explore Premium Shoes", href: "#shop" },
{ text: "Shop Accessories", href: "#shop" },
]}
buttonAnimation="slide-up"
@@ -235,4 +235,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}