diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 44435dc..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,28 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Righteous Living | Ethical, Sustainable Fashion", description: "Premium ethical clothing for conscious consumers. 100% sustainable materials, fair trade certified, and expertly crafted. Shop Righteous Living today.", keywords: "sustainable fashion, ethical clothing, eco-friendly apparel, conscious living, fair trade fashion", openGraph: { - title: "Righteous Living | Ethical Fashion Brand", description: "Wear your values. Discover premium, sustainable clothing that reflects your commitment to conscious living.", type: "website", siteName: "Righteous Living", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-woman-holding-man-arm_23-2148243259.jpg", alt: "Righteous Living Collection" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Righteous Living | Ethical Fashion", description: "Premium sustainable clothing for the conscious consumer.", images: ["http://img.b2bpic.net/free-photo/close-up-woman-holding-man-arm_23-2148243259.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +