Merge version_3 into main #6

Merged
bender merged 1 commits from version_3 into main 2026-03-03 16:10:51 +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>
);
}