Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e7546e9cec | |||
| c4f57f8535 | |||
| 698a8cd220 | |||
| 08d862959f | |||
| abd3ade292 | |||
| c3c7073be1 | |||
| a6e121dedf | |||
| 6764215b43 | |||
| dd8a0bf1c8 | |||
| 9a17af062a | |||
| 19bf4fd3be | |||
| e2074acf2e | |||
| 49a29dbf0d | |||
| 498f5e0c60 | |||
| 0c09f38a86 | |||
| 8010888629 | |||
| 8e072d2073 | |||
| 33572c41fa | |||
| 45119d8d58 | |||
| cc0ea5ad68 | |||
| 60ebe1fcd3 | |||
| 3a1b022fd6 |
@@ -1,51 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: "Computer Club", description: "Connect with passionate technologists, build amazing projects, and grow together as a community of innovators."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ export default function LandingPage() {
|
|||||||
tag="About Our Club"
|
tag="About Our Club"
|
||||||
tagIcon={Users}
|
tagIcon={Users}
|
||||||
title="Building Tech Leaders Together"
|
title="Building Tech Leaders Together"
|
||||||
description="Our computer club is a vibrant community of developers, designers, and tech enthusiasts united by a passion for innovation. We provide hands-on learning, mentorship, and collaborative opportunities to help members master cutting-edge technologies."
|
description="Transform your tech career by joining a vibrant community of developers, designers, and tech enthusiasts united by a passion for innovation. We provide hands-on learning, mentorship, and collaborative opportunities to help members master cutting-edge technologies."
|
||||||
metrics={[{"value":"500+","title":"Active Members"},{"value":"50+","title":"Projects Completed"}]}
|
metrics={[{"value":"500+","title":"Active Members"},{"value":"50+","title":"Projects Completed"}]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/multiracial-group-people-discussing-business-office_1268-21455.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/multiracial-group-people-discussing-business-office_1268-21455.jpg"
|
||||||
imageAlt="Community Meeting"
|
imageAlt="Community Meeting"
|
||||||
|
|||||||
Reference in New Issue
Block a user