diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 72757da..f80fe74 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,53 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "@/styles/globals.css";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Heritage Caffe The William | Premium Restaurant South Africa", description: "Discover Heritage Caffe The William - an upscale African-Italian restaurant featuring 28-day aged steaks, fresh seafood, authentic Italian cuisine, and an extensive wine selection in South Africa.", keywords: "South African restaurant, grill room, Italian restaurant, wine bar, steakhouse, seafood, family restaurant, fine dining, premium cuisine, South Africa", metadataBase: new URL("https://heritagecaffethewhiham.com"),
- alternates: {
- canonical: "https://heritagecaffethewhiham.com"},
- openGraph: {
- title: "Heritage Caffe The William | Premium Dining", description: "Experience African-Italian heritage dining with premium steaks, seafood, Italian classics, and fine wines.", url: "https://heritagecaffethewhiham.com", siteName: "Heritage Caffe The William", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3426.jpg", alt: "Heritage Caffe The William elegant dining experience"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Heritage Caffe The William | Premium Restaurant", description: "Premium African-Italian dining with 28-day aged steaks and extensive wine selection.", images: [
- "http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3426.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Heritage Caffe The William", description: "Premium grill room, seafood, Italian classics, signature cocktails and fine wines"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-