diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2e3c72e..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1430 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Emaan Center Feroza - Premium Clothing Store in Firoza", description: "Shop high-quality, trendy clothing at Emaan Center Feroza. Fast delivery available. Visit us at QR98+2X7, Firoza or call +92 300 2771088. 4.3★ rated.", keywords: "clothing store, fashion, Firoza, Pakistan, premium clothes, delivery, trendy fashion", metadataBase: new URL("https://emaancenterfiroza.com"), - alternates: { - canonical: "https://emaancenterfiroza.com"}, - openGraph: { - title: "Emaan Center Feroza - Premium Clothing Store", description: "Discover high-quality, trendy clothing with excellent service and delivery. Visit Emaan Center Feroza today.", siteName: "Emaan Center Feroza", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-business-owner-preparing-her-store_23-2149300904.jpg", alt: "Emaan Center Feroza - Premium Clothing Store"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Emaan Center Feroza - Premium Clothing Store", description: "High-quality fashion with delivery available. 4.3★ rated clothing store in Firoza, Pakistan.", images: ["http://img.b2bpic.net/free-photo/young-business-owner-preparing-her-store_23-2149300904.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -