diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ebfe5fd..d3a7afe 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,34 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; +import './styles/variables.css'; +import './styles/base.css'; +import { ServiceWrapper } from '@/providers/service'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Electronics Repair Malir | Fast Affordable Service | Time Electronics", description: "Fast & reliable electronics repair in Malir Karachi. TV, mobile, LED repair by trusted technicians. Same-day solutions. Call 0300 2549951 or WhatsApp now.", keywords: "electronics repair Malir, TV repair Karachi, mobile repair Saudabad, LED TV repair Malir Colony, phone repair Karachi, electronics shop Malir", metadataBase: new URL("https://timeelectronics.pk"), - alternates: { - canonical: "https://timeelectronics.pk" - }, - openGraph: { - title: "Electronics Repair in Malir | Time Electronics", description: "Expert electronics repair service in Malir Karachi. Fast, affordable, trusted.", type: "website", siteName: "Time Electronics", images: [ - { - url: "http://img.b2bpic.net/free-photo/angled-esd-tweezers-pulling-out-micro-sim-card-tray-from-mobile-smartphone-body-near-toolkit-bag_346278-1792.jpg", alt: "Professional electronics repair service" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Electronics Repair in Malir | Time Electronics", description: "Fast & reliable electronics repair service. Call 0300 2549951", images: ["http://img.b2bpic.net/free-photo/angled-esd-tweezers-pulling-out-micro-sim-card-tray-from-mobile-smartphone-body-near-toolkit-bag_346278-1792.jpg"] - }, - robots: { - index: true, - follow: true - } + title: 'Time Electronics - Fast & Reliable Electronics Repair in Malir', + description: 'Professional electronics repair services in Malir, Karachi. TV, Mobile, LED, and Home Electronics repair. Expert technicians. Affordable pricing. Same-day solutions.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children}