20 Commits

Author SHA1 Message Date
698a8cd220 Update src/app/layout.tsx 2026-03-03 16:10:42 +00:00
08d862959f Switch to version 1: remove src/app/team/page.tsx 2026-03-03 16:09:23 +00:00
abd3ade292 Switch to version 1: remove src/app/events/page.tsx 2026-03-03 16:09:22 +00:00
c3c7073be1 Switch to version 1: remove src/app/contact/page.tsx 2026-03-03 16:09:21 +00:00
a6e121dedf Switch to version 1: remove src/app/about/page.tsx 2026-03-03 16:09:20 +00:00
6764215b43 Switch to version 1: modified src/app/page.tsx 2026-03-03 16:09:19 +00:00
dd8a0bf1c8 Switch to version 1: modified src/app/layout.tsx 2026-03-03 16:09:18 +00:00
9a17af062a Merge version_2 into main
Merge version_2 into main
2026-03-03 16:01:02 +00:00
19bf4fd3be Update src/app/page.tsx 2026-03-03 16:00:56 +00:00
e2074acf2e Update src/app/about/page.tsx 2026-03-03 16:00:54 +00:00
49a29dbf0d Merge version_2 into main
Merge version_2 into main
2026-03-03 15:55:55 +00:00
498f5e0c60 Add src/app/team/page.tsx 2026-03-03 15:55:41 +00:00
0c09f38a86 Update src/app/page.tsx 2026-03-03 15:55:40 +00:00
8010888629 Update src/app/layout.tsx 2026-03-03 15:55:38 +00:00
8e072d2073 Add src/app/events/page.tsx 2026-03-03 15:55:36 +00:00
33572c41fa Add src/app/contact/page.tsx 2026-03-03 15:55:34 +00:00
45119d8d58 Add src/app/about/page.tsx 2026-03-03 15:55:32 +00:00
cc0ea5ad68 Merge version_1 into main
Merge version_1 into main
2026-03-03 15:52:15 +00:00
60ebe1fcd3 Merge version_1 into main
Merge version_1 into main
2026-03-03 15:46:54 +00:00
3a1b022fd6 Merge version_1 into main
Merge version_1 into main
2026-03-03 15:43:15 +00:00

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}