From cb09e8a5e5505f068c38c6255158f1a25baaab14 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 15:42:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 66 +++++++--------------------------------------- 1 file changed, 9 insertions(+), 57 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 305abe4..be63348 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +