Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b291b83fd4 | |||
| e913de6481 | |||
| e22f471df7 | |||
| 25e32469ef | |||
| 9433effa16 | |||
| 672b998cf4 |
@@ -1,57 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
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 "./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 = {
|
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"),
|
title: "BUBUNIBBLE - Pesan Makanan & Minuman Terbaik", description: "Jelajahi koleksi lengkap makanan lezat, minuman segar, dan dessert istimewa dari BUBUNIBBLE."
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="id">
|
||||||
<ServiceWrapper>
|
<body>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ export default function BubunibblePage() {
|
|||||||
imageSrc: "http://img.b2bpic.net/free-photo/healthy-raw-detox-smoothies-fruits-vegetables-wooden-background_482257-36253.jpg?_wi=1", imageAlt: "Fresh Juice"},
|
imageSrc: "http://img.b2bpic.net/free-photo/healthy-raw-detox-smoothies-fruits-vegetables-wooden-background_482257-36253.jpg?_wi=1", imageAlt: "Fresh Juice"},
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Mulai Pesan", href: "#products" },
|
{ text: "Pesan Sekarang", href: "#products" },
|
||||||
{ text: "Pelajari Lebih", href: "#about" },
|
{ text: "Pelajari Lebih", href: "#about" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user