From 653cfcd3e00de71da2565125a2bea0e3b535bcd5 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 1 Jun 2026 13:04:54 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4b13001..517ff5b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; @@ -8,19 +9,35 @@ import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], + variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], +}); + +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", + title: "SINGARQ – Dashboard Penagihan Voucher WiFi", description: "Sistem manajemen dan penagihan voucher WiFi untuk kemudahan distribusi, penjualan, komisi seller, dan laporan keuangan.", keywords: "SINGARQ, WiFi voucher, manajemen voucher, penagihan WiFi, laporan keuangan, komisi seller, dashboard", openGraph: { + title: "SINGARQ – Dashboard Penagihan Voucher WiFi", description: "Sistem manajemen dan penagihan voucher WiFi untuk kemudahan distribusi, penjualan, komisi seller, dan laporan keuangan.", url: "/", siteName: "SINGARQ", images: [ + { + url: "http://img.b2bpic.net/free-photo/close-up-digital-tablet-with-financial-results_1098-482.jpg", alt: "SINGARQ Dashboard" + } + ], + type: "website" + }, + twitter: { + card: "summary_large_image", title: "SINGARQ – Dashboard Penagihan Voucher WiFi", description: "Sistem manajemen dan penagihan voucher WiFi untuk kemudahan distribusi, penjualan, komisi seller, dan laporan keuangan.", images: ["http://img.b2bpic.net/free-photo/close-up-digital-tablet-with-financial-results_1098-482.jpg"] + }, + robots: { + index: true, + follow: true + } }; export default function RootLayout({ @@ -32,7 +49,7 @@ export default function RootLayout({ {children}