From e22f471df79fe67a71a1038179e73fd0a1784bdf Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 09:51:50 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82cca57..59abfc1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,22 @@ 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 { Lenis } from "./lenis"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -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"], -}); export const metadata: Metadata = { - title: "BUBUNIBBLE - Pesan Makanan, Minuman & Dessert Online", description: "Nikmati koleksi lengkap makanan lezat, minuman segar, dan dessert istimewa dari BUBUNIBBLE. Pesan mudah via WhatsApp dengan sistem yang cepat dan aman.", keywords: "makanan online, minuman, dessert, pesan makanan, bubunibble, bubble tea, nasi goreng, mie ayam", metadataBase: new URL("https://bubunibble.com"), - alternates: { - canonical: "https://bubunibble.com"}, - openGraph: { - title: "BUBUNIBBLE - Pesan Makanan Terbaik Online", description: "Pesan makanan, minuman, dan dessert favorit Anda dari BUBUNIBBLE. Integrasi WhatsApp untuk kemudahan pemesanan.", url: "https://bubunibble.com", siteName: "BUBUNIBBLE", type: "website", images: [ - { - url: "https://bubunibble.com/og-image.jpg", alt: "BUBUNIBBLE Food Ordering"}, - ], - }, - twitter: { - card: "summary_large_image", title: "BUBUNIBBLE - Pesan Makanan Online", description: "Makanan lezat, minuman segar, dessert istimewa. Pesan sekarang via WhatsApp!", images: ["https://bubunibble.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "BUBUNIBBLE - Pesan Makanan & Minuman Terbaik", description: "Jelajahi koleksi lengkap makanan lezat, minuman segar, dan dessert istimewa dari BUBUNIBBLE."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - + + + {children} - + +