diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 3b5a7df..4e6c4a4 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,43 +1,20 @@
import type { Metadata } from "next";
-import { Josefin_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const josefinSans = Josefin_Sans({
- variable: "--font-josefin-sans", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Old Boy Domino Club - Join Our Community", description: "Join Old Boy Domino Club, a thriving 38+ year community of domino enthusiasts. Experience classic gaming, tournaments, and lifelong friendships.", keywords: "domino club, domino games, community gaming, tournaments, fellowship, classic games", openGraph: {
- title: "Old Boy Domino Club", description: "Join our thriving community of domino enthusiasts since 1985", siteName: "Old Boy Domino Club", type: "website"
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Old Boy Domino Club", description: "Join a thriving community of domino enthusiasts where tradition meets fellowship."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-