diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 66166b2..d13143d 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-