From e11868a2be48c0f5058bdac44036d20b8ff97382 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 07:50:56 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 72fee14..89cbced 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "JASTIP.ASIA - Belanja Original dari 9 Negara Asia Tenggara", description: "Platform jasa titip terpercaya untuk belanja produk original dari Thailand, Vietnam, Singapura dan 6 negara Asia Tenggara lainnya. Proses mudah, harga transparan, 100% original.", keywords: "jastip, jastip asia, belanja online, titip barang, thailand, vietnam, singapura, asia tenggara, shopping, personal shopper", metadataBase: new URL("https://jastip.asia"), - alternates: { - canonical: "https://jastip.asia"}, - openGraph: { - title: "JASTIP.ASIA - Belanja Original dari Asia Tenggara", description: "Titipkan Impianmu dari 9 Negara Asia Tenggara dengan JASTIP.ASIA", url: "https://jastip.asia", siteName: "JASTIP.ASIA", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/chinese-park-night_1127-4189.jpg", alt: "JASTIP.ASIA - Platform Belanja Asia"}, - ], - }, - twitter: { - card: "summary_large_image", title: "JASTIP.ASIA - Belanja Original dari Asia Tenggara", description: "Titipkan Impianmu dari 9 Negara Asia Tenggara tanpa ribet, tanpa tipu", images: ["http://img.b2bpic.net/free-photo/chinese-park-night_1127-4189.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}