Update src/app/layout.tsx

This commit is contained in:
2026-03-05 15:42:17 +00:00
parent 592b1d91a5
commit cb09e8a5e5

View File

@@ -1,67 +1,20 @@
import type { Metadata } from "next";
import { Manrope, DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-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"],
});
export const metadata: Metadata = {
title: "Tổ Chức Sự Kiện Chuyên Nghiệp Bangkok | Jabu Events",
description: "Jabu Events - Công ty tổ chức sự kiện hàng đầu tại Bangkok. Chuyên sự kiện doanh nghiệp, ra mắt sản phẩm, hội nghị. Đánh giá 4.9 sao. Gọi: 061-384-4900",
keywords: "tổ chức sự kiện Bangkok, công ty event Bangkok, sự kiện doanh nghiệp, ra mắt sản phẩm, hội nghị MICE",
openGraph: {
title: "Tổ Chức Sự Kiện Chuyên Nghiệp Bangkok | Jabu Events",
description: "Jabu Events - Công ty tổ chức sự kiện hàng đầu tại Bangkok và Việt Nam. Chuyên sự kiện doanh nghiệp, ra mắt sản phẩm, hội nghị quy mô lớn.",
siteName: "Jabu Events",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Tổ Chức Sự Kiện Chuyên Nghiệp Bangkok | Jabu Events",
description: "Công ty tổ chức sự kiện hàng đầu tại Bangkok. Chuyên sự kiện doanh nghiệp, ra mắt sản phẩm, hội nghị.",
},
robots: {
index: true,
follow: true,
},
};
title: "Jabu Events - Event Management in Bangkok", description: "Professional event organization services in Bangkok and Southeast Asia"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1429,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}