From cb0ae3877bd43c580bc03e763f0183e4dd54babb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 07:53:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 89cbced..9d1cbbd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import "@/styles/globals.css"; +import { DM_Sans, Outfit } from "next/font/google"; +import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const dm_sans = DM_Sans({ + subsets: ["latin"], + variable: "--font-dm-sans"}); + +const outfit = Outfit({ + subsets: ["latin"], + variable: "--font-outfit"}); export const metadata: Metadata = { - title: "JASTIP.ASIA - Titipkan Impianmu dari 9 Negara Asia Tenggara", description: - "Platform jasa titip terpercaya untuk belanja produk original dari Thailand, Vietnam, Singapura, dan 6 negara Asia lainnya. Barang original, tanpa ribet, tanpa tipu."}; + title: "JASTIP.ASIA - Belanja Produk Original Asia Tenggara", description: "Platform terpercaya untuk belanja lintas negara dengan jaminan keaslian dan layanan terbaik."}; export default function RootLayout({ children, @@ -14,8 +19,10 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - {children} + + + {children} +