From 5e3b7dbadb5855674337e28a2c976aa75cdea299 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 15:45:45 +0000 Subject: [PATCH 1/3] Update src/app/events/page.tsx --- src/app/events/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 +} -- 2.49.1 From 1c1ec2e7fe711ed7c850dece6b930848332b600c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 15:45:46 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++++------------------------------------- 1 file changed, 8 insertions(+), 37 deletions(-) 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}