diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3d5cd9b..b0f5558 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,25 @@ 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"; - -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"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Serene Studios | Luxury Avant-Garde Fashion", description: "Serene Studios creates conceptual luxury fashion where silence speaks louder than noise. Editorial aesthetic, restrained design, timeless pieces for design aesthetes.", keywords: "luxury fashion, avant-garde design, editorial aesthetic, minimalist clothing, contemporary luxury brand, designer clothing", metadataBase: new URL("https://serenestudios.com"), - alternates: { - canonical: "https://serenestudios.com"}, - openGraph: { - title: "Serene Studios | Silence in Design", description: "Conceptual luxury fashion that whispers rather than shouts. Pieces designed for those who understand restraint as ultimate luxury.", url: "https://serenestudios.com", siteName: "Serene Studios", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/view-human-hand-with-mirror_23-2149512324.jpg", alt: "luxury fashion editorial studio aesthetic"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Serene Studios | Luxury Avant-Garde Fashion", description: "Editorial luxury fashion. Silence in design. Timeless pieces.", images: ["http://img.b2bpic.net/free-photo/view-human-hand-with-mirror_23-2149512324.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Serene Studios - Minimalist Fashion & Design", description: "Serene Studios explores the intersection of restraint, identity, and intentional creation. Avant-garde fashion with editorial integrity."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children} +