diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 46cea5b..039eeb9 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,56 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Public_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 publicSans = Public_Sans({
- variable: "--font-public-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Pizzeria Napoli - Authentic Italian Wood-Fired Pizza", description: "Experience authentic Italian pizza made with premium ingredients in our wood-fired oven. Handcrafted pizza, fresh pasta, and classic Italian cuisine.", keywords: "pizza restaurant, italian pizza, wood-fired pizza, authentic italian food, pizzeria", alternates: {
- canonical: "https://pizzerinapoli.com"},
- openGraph: {
- title: "Pizzeria Napoli - Authentic Italian Pizza", description: "Handcrafted authentic Italian pizza made in a traditional wood-fired oven with premium ingredients.", type: "website", siteName: "Pizzeria Napoli", images: [
- {
- url: "http://img.b2bpic.net/free-photo/delicious-pizza-traditional-italian-pizza_1328-3988.jpg", alt: "margherita pizza fresh basil mozzarella"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Pizzeria Napoli - Authentic Italian Pizza", description: "Experience the finest handcrafted Italian pizza in town.", images: ["http://img.b2bpic.net/free-photo/delicious-pizza-traditional-italian-pizza_1328-3988.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Ayam Geprek - Authentic Indonesian Crispy Chicken", description: "Experience the best ayam geprek (Indonesian crispy fried chicken). Made with traditional recipes and the finest ingredients."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-