Update src/app/layout.tsx

This commit is contained in:
2026-03-11 16:02:59 +00:00
parent 39cd9d1b17
commit 8cbefecdf3

View File

@@ -1,24 +1,56 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Creatives 99 | Solusi Desain & Digital Marketing | PT Tijarah Barakah Mulia",
description: "Transformasi kreatif untuk bisnis yang bertumbuh. Layanan desain, branding, digital marketing, dan web development dari PT Tijarah Barakah Mulia.",
keywords: "desain grafis, branding, digital marketing, web development, creative agency, Jakarta",
openGraph: {
title: "Creatives 99 | Solusi Desain & Digital Marketing",
description: "Transformasi kreatif untuk bisnis yang bertumbuh dan berkah bersama Creatives 99",
type: "website",
siteName: "Creatives 99",
images: [
{
url: "http://img.b2bpic.net/free-photo/flat-lay-stationery-supplies-companies_23-2148500459.jpg",
alt: "Creatives 99 Creative Agency",
},
],
},
twitter: {
card: "summary_large_image",
title: "Creatives 99 | Solusi Desain & Digital Marketing",
description: "Transformasi kreatif untuk bisnis yang bertumbuh",
images: ["http://img.b2bpic.net/free-photo/flat-lay-stationery-supplies-companies_23-2148500459.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +59,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +73,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}