diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index d426010..9352cf7 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Mulish } 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 inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const mulish = Mulish({
- variable: "--font-mulish", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "FASHIONIST | Iconic Fashion Design Store", description: "Discover haute couture excellence at FASHIONIST. Premium designer collections featuring exclusive pieces crafted with meticulous attention to detail and uncompromising elegance.", keywords: "fashion design, haute couture, luxury clothing, designer store, premium fashion, exclusive collections", metadataBase: new URL("https://fashionist.com"),
- alternates: {
- canonical: "https://fashionist.com"},
- robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "FASHIONIST | Iconic Fashion Design Store", description: "Experience haute couture excellence. Discover our exclusive collection of premium designer pieces.", url: "https://fashionist.com", siteName: "FASHIONIST", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/fashionable-lady-jeans-with-black-lace-jeans-poses-background-wooden-door-curly-girl-with-bright-red-lips-looks-into-camera-street_197531-28053.jpg", alt: "FASHIONIST Luxury Fashion"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "FASHIONIST | Iconic Fashion Design Store", description: "Experience haute couture excellence with our exclusive designer collections.", images: ["http://img.b2bpic.net/free-photo/fashionable-lady-jeans-with-black-lace-jeans-poses-background-wooden-door-curly-girl-with-bright-red-lips-looks-into-camera-street_197531-28053.jpg"],
- },
-};
+ title: "FASHIONIST | Iconic Fashion Design Store", description: "Experience haute couture excellence with FASHIONIST. Discover exclusive premium designer pieces crafted with meticulous attention to detail and uncompromising elegance."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-