diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dd33e4d..937e33b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "UAE Visa & Residency Services Dubai | Fast Trusted Experts", description: "Expert visa services in Dubai for family visas, Golden Visa, entry permits & PRO services. 24/7 support from GDRFA specialists. 4.6 star rated. Call 058 980 3121.", keywords: "Dubai family visa, Golden Visa UAE, freelance visa, entry permit, PRO services Dubai, visa services Deira, GDRFA Dubai, residential visa", metadataBase: new URL("https://visaservicesdubai.ae"), - alternates: { - canonical: "https://visaservicesdubai.ae"}, - openGraph: { - title: "UAE Visa & Residency Experts – Fast, Trusted & Government Compliant", description: "Expert visa consulting in Dubai. Family visas, Golden Visa, entry permits, PRO services. 24/7 support. Open 24 hours.", url: "https://visaservicesdubai.ae", siteName: "Visa Services Dubai UAE", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/business-partners-team-walking-down-discussing-work_1150-3027.jpg", alt: "Visa Services Dubai - Professional Office"}, - ], - }, - twitter: { - card: "summary_large_image", title: "UAE Visa & Residency Services Dubai", description: "Expert visa services & PRO consulting. Family visas, Golden Visa, entry permits. 24/7 support.", images: ["http://img.b2bpic.net/free-photo/business-partners-team-walking-down-discussing-work_1150-3027.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "UAE Visa & Residency Experts – Fast, Trusted & Government Compliant", description: "Family Visa • Golden Visa • Freelance Visa • Entry Permits • PRO Services • Open 24 Hours"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}