diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cc071f6..6d8c4d5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Tech Club - Community of Innovators", description: "Join our computer club community of developers and tech enthusiasts. Access workshops, collaborative projects, and networking events to grow your skills.", keywords: "computer club, tech community, programming, workshops, innovation, networking", openGraph: { - title: "Tech Club - Community of Innovators", description: "Join our computer club community of developers and tech enthusiasts.", type: "website", siteName: "TechClub" - }, - twitter: { - card: "summary_large_image", title: "Tech Club - Community of Innovators", description: "Join our computer club community and grow with fellow tech enthusiasts." - }, - robots: { - index: true, - follow: true - } -}; + title: "Computer Club", description: "Connect with passionate technologists, build amazing projects, and grow together as a community of innovators."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}