Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-07 17:09:37 +00:00
2 changed files with 11 additions and 45 deletions

View File

@@ -1,49 +1,16 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Chess Club - Join Our Thriving Community", description: "Join our chess club for tournaments, coaching, and community. Connect with players at all levels, compete weekly, and master the ancient game.", keywords: "chess club, tournaments, coaching, chess community, competitive chess", metadataBase: new URL("https://chessclub.com"),
alternates: {
canonical: "https://chessclub.com"
},
openGraph: {
title: "Chess Club - Strategy, Competition & Community", description: "Where chess players unite. Join tournaments, attend master classes, and improve your game.", url: "https://chessclub.com", siteName: "Chess Club", type: "website"
},
twitter: {
card: "summary_large_image", title: "Chess Club - Join Our Community", description: "Tournaments, coaching, and community for chess enthusiasts of all levels."
},
robots: {
index: true,
follow: true
}
};
title: "Chess Club", description: "Where strategy meets community. Join passionate players, master the ancient game, and compete in tournaments that celebrate excellence and intellectual pursuit."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className="bg-background text-foreground">{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1378,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f7f6f7;
--card: #ffffff;
--foreground: #250c0d;
--primary-cta: #b82b40;
--background: #fafffb;
--card: #f7fffa;
--foreground: #001a0a;
--primary-cta: #0a7039;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #250c0d;
--accent: #b90941;
--background-accent: #e8a8b6;
--accent: #a8d9be;
--background-accent: #6bbf8e;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);