diff --git a/src/app/events/page.tsx b/src/app/events/page.tsx index bc3c740..c47cac5 100644 --- a/src/app/events/page.tsx +++ b/src/app/events/page.tsx @@ -132,4 +132,4 @@ export default function EventsPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d8ba90c..69c3c39 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,23 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Computer Club - Tech Community & Events", - description: "Join Computer Club: a vibrant community of tech enthusiasts, developers, and innovators. Attend workshops, hackathons, and networking events.", - keywords: "computer club, tech community, programming, coding, hackathon, networking, workshops", - openGraph: { - title: "Computer Club - Tech Community & Events", - description: "Join our thriving computer club community for workshops, hackathons, and tech networking events.", - siteName: "Computer Club", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Computer Club - Tech Community & Events", - description: "Join our thriving computer club community for workshops, hackathons, and tech networking events.", - }, -}; + title: "Computer Club", description: "Join the Computer Club community"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}