diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4c60db0..f583c47 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Nunito } 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 nunito = Nunito({
- variable: "--font-nunito", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "ELEVATE | Premium Fashion Brand", description: "Discover timeless, sustainable fashion with premium quality. Shop our curated collections of elegant clothing designed for the modern wardrobe.", keywords: "fashion, clothing, brand, premium, sustainable, timeless design", metadataBase: new URL("https://elevate-fashion.com"),
- alternates: {
- canonical: "https://elevate-fashion.com"
- },
- openGraph: {
- title: "ELEVATE | Premium Fashion Brand", description: "Experience premium fashion that elevates your style. Quality craftsmanship meets contemporary design.", url: "https://elevate-fashion.com", siteName: "ELEVATE", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/young-women-posing-near-old-decorated-car_1153-6207.jpg", alt: "ELEVATE Fashion Collection"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "ELEVATE | Premium Fashion Brand", description: "Discover timeless, sustainable fashion with premium quality.", images: ["http://img.b2bpic.net/free-photo/young-women-posing-near-old-decorated-car_1153-6207.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "ELEVATE - Premium Fashion Brand", description: "Discover curated collections of timeless fashion pieces designed for the modern wardrobe."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-