|
|
|
|
@@ -1,57 +1,20 @@
|
|
|
|
|
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";
|
|
|
|
|
|
|
|
|
|
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 (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="id">
|
|
|
|
|
<body>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|