Update src/app/layout.tsx

This commit is contained in:
2026-03-05 14:46:00 +00:00
parent 5c4afa5759
commit 91cc2d181c

View File

@@ -1,75 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } 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 halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const lato = Lato({
variable: "--font-lato",
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Aajel Business Services Dubai - Typing & Document Support",
description: "Fast, reliable typing, document processing, and business support services in Dubai. Professional assistance for visa, government forms, and administrative needs. Call 04 234 4002 or WhatsApp today.",
keywords: "typing service Dubai, document processing UAE, visa assistance Dubai, business support services, government forms help, Al Twar Dubai, professional typing",
metadataBase: new URL("https://aajelbusiness.com"),
alternates: {
canonical: "https://aajelbusiness.com",
},
openGraph: {
title: "Aajel Business Services - Your Trusted Partner for Typing & Business Support",
description: "Professional typing, document processing, and business support services in Dubai. Fast responses, transparent pricing, trusted by 500+ customers.",
url: "https://aajelbusiness.com",
siteName: "Aajel Business Services",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/crop-businesswoman-using-laptop_1098-19997.jpg",
alt: "Aajel Business Services Office",
},
],
},
twitter: {
card: "summary_large_image",
title: "Aajel Business Services Dubai",
description: "Fast & reliable typing, documentation, and business support services. Call 04 234 4002",
images: ["http://img.b2bpic.net/free-photo/crop-businesswoman-using-laptop_1098-19997.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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1437,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}