diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 41c2677..e271206 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,53 +1,24 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Poppins } from "next/font/google";
import "./globals.css";
-import "@/lib/gsap-setup";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-import { getVisualEditScript } from "@/utils/visual-edit-script";
-const halant = Halant({
- variable: "--font-halant",
- subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter",
- 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: 'Casa Afriqa | Dining & Lounge | Serrekunda, Gambia',
- description: 'Serrekunda\'s premium 24/7 restaurant and lounge. Seafood, cocktails, shisha, and live sports. Experience authentic Gambian hospitality.',
- openGraph: {
- "title": "Casa Afriqa | Dining & Lounge",
- "siteName": "Casa Afriqa",
- "type": "website"
- },
+ title: "Casa Afriqa | Dining & Lounge | Serrekunda, Gambia", description: "Serrekunda's premium 24/7 restaurant and lounge. Seafood, cocktails, shisha, and live sports. Experience authentic Gambian hospitality.", openGraph: {
+ title: "Casa Afriqa | Dining & Lounge", siteName: "Casa Afriqa", type: "website"
+ }
};
-export default function RootLayout({
- children,
-}: Readonly<{
- children: React.ReactNode;
-}>) {
+export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
-
-