Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-06 02:00:50 +00:00
2 changed files with 19 additions and 39 deletions

View File

@@ -1,47 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Team Black Code | Elite Esports Organization", description: "Championship-winning esports team competing at the highest levels of competitive gaming. Join the elite squad of professional gamers.", keywords: "esports, team, competitive gaming, professional gamers, gaming team, esports tournament", metadataBase: new URL("https://teamblackcode.gg"),
alternates: {
canonical: "https://teamblackcode.gg"},
openGraph: {
title: "Team Black Code | Elite Esports Organization", description: "Championship-winning esports team. Professional gamers dominating competitive gaming.", url: "https://teamblackcode.gg", siteName: "Team Black Code", type: "website"},
twitter: {
card: "summary_large_image", title: "Team Black Code | Elite Esports Organization", description: "Championship-winning esports team competing at the highest levels."},
robots: {
index: true,
follow: true,
},
};
title: "Team Black Code - Elite Esports Squad", description: "Elite esports squad dominating competitive gaming with championship mentality and cutting-edge strategy."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -8,7 +8,7 @@ import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
import BlogCardTwo from "@/components/sections/blog/BlogCardTwo";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Zap } from "lucide-react";
import { Zap, Twitch, Twitter } from "lucide-react";
export default function LandingPage() {
return (
@@ -72,16 +72,16 @@ export default function LandingPage() {
{
id: "active-roster", groupTitle: "Active Roster", members: [
{
id: "1", title: "ShadowKing", subtitle: "IGL / Strategic Mastermind", detail: "shadowking@teamblackcode.gg", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-streamer-looking-camera-after-playing-space-shooter-games-using-professional-rgb-keypad-powerful-computer-pro-player-streaming-online-videogames-gaming-home-studio_482257-12631.jpg", imageAlt: "ShadowKing - Team Captain"
id: "1", title: "ShadowKing", subtitle: "IGL / Strategic Mastermind", detail: "shadowking@teamblackcode.gg | Twitch | Twitter", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-streamer-looking-camera-after-playing-space-shooter-games-using-professional-rgb-keypad-powerful-computer-pro-player-streaming-online-videogames-gaming-home-studio_482257-12631.jpg", imageAlt: "ShadowKing - Team Captain"
},
{
id: "2", title: "NeonBlast", subtitle: "Entry Fragger / Aggressive Play", detail: "neonblast@teamblackcode.gg", imageSrc: "http://img.b2bpic.net/free-photo/african-american-bearded-guy-wearing-hoodie-cap-sitting-gamer-chair-looking-camera-gaming-club-internet-cafe_613910-19248.jpg", imageAlt: "NeonBlast - Entry Fragger"
id: "2", title: "NeonBlast", subtitle: "Entry Fragger / Aggressive Play", detail: "neonblast@teamblackcode.gg | Twitch | Twitter", imageSrc: "http://img.b2bpic.net/free-photo/african-american-bearded-guy-wearing-hoodie-cap-sitting-gamer-chair-looking-camera-gaming-club-internet-cafe_613910-19248.jpg", imageAlt: "NeonBlast - Entry Fragger"
},
{
id: "3", title: "VortexAim", subtitle: "Rifler / Precision Specialist", detail: "vortexaim@teamblackcode.gg", imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-man-streamer-playing-video-game-using-joystick-gaming-room_839833-8031.jpg?_wi=1", imageAlt: "VortexAim - Rifler"
id: "3", title: "VortexAim", subtitle: "Rifler / Precision Specialist", detail: "vortexaim@teamblackcode.gg | Twitch | Twitter", imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-man-streamer-playing-video-game-using-joystick-gaming-room_839833-8031.jpg?_wi=1", imageAlt: "VortexAim - Rifler"
},
{
id: "4", title: "EchoSupport", subtitle: "Support / Utility Expert", detail: "echosupport@teamblackcode.gg", imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-man-streamer-playing-video-game-using-joystick-gaming-room_839833-8031.jpg?_wi=2", imageAlt: "EchoSupport - Support Player"
id: "4", title: "EchoSupport", subtitle: "Support / Utility Expert", detail: "echosupport@teamblackcode.gg | Twitch | Twitter", imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-man-streamer-playing-video-game-using-joystick-gaming-room_839833-8031.jpg?_wi=2", imageAlt: "EchoSupport - Support Player"
},
],
},
@@ -192,4 +192,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}