diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 348a867..ddb985d 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,23 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Mulish } from "next/font/google";
+import { Poppins } 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 mulish = Mulish({
- variable: "--font-mulish", subsets: ["latin"],
+const poppins = Poppins({
+ variable: "--font-poppins", subsets: ["latin"],
+ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
- title: "Le Grand Duc | Authentic Belgian Restaurant Woluwe-Saint-Pierre", description: "Award-winning Belgian bistro in Woluwe-Saint-Pierre. Homemade sauces, quality meats, warm service. 4.7★ rated. Reserve your table today. 02 779 36 74.", keywords: "Belgian restaurant Brussels, restaurant Woluwe-Saint-Pierre, steak restaurant, authentic Belgian cuisine, local bistro", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Le Grand Duc | Belgian Restaurant", description: "Authentic Belgian cuisine. Homemade sauces. Quality meats. Warm hospitality. Book now.", type: "website", siteName: "Le Grand Duc", images: [
- {
- url: "http://img.b2bpic.net/free-photo/rib-eye-steak-with-fried-potatoe-mushroom-sauce_140725-5429.jpg", alt: "Le Grand Duc signature steak with homemade sauce"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Le Grand Duc | Authentic Belgian Bistro", description: "Homemade sauces, quality meats, warm service. Woluwe-Saint-Pierre's neighborhood favorite.", images: ["http://img.b2bpic.net/free-photo/tables-chairs-arranged-empty-coffee-shop_107420-96463.jpg"],
- },
-};
+ title: "Le Grand Duc - Authentic Belgian Cuisine", description: "Authentic Belgian cuisine in the heart of Brussels. Homemade sauces, quality meats, warm hospitality."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-