From 8cbefecdf354fd54c487b2ccb37ee075865e1fcd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 16:02:59 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..9f7a33b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}