5 Commits

Author SHA1 Message Date
34a05d0a0a Update src/app/styles/variables.css 2026-03-07 18:33:54 +00:00
20507e8c85 Switch to version 1: modified src/app/styles/variables.css 2026-03-06 16:17:05 +00:00
1fd78a40f5 Switch to version 1: modified src/app/layout.tsx 2026-03-06 16:17:04 +00:00
da44c14f79 Switch to version 2: modified src/app/styles/variables.css 2026-03-06 16:16:45 +00:00
e6bbc0de59 Merge version_3 into main
Merge version_3 into main
2026-03-06 16:15:02 +00:00
2 changed files with 48 additions and 12 deletions

View File

@@ -1,16 +1,51 @@
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", description: "Join our vibrant chess community"};
title: "Chess Club - Master the Game", description: "Join our vibrant chess community for expert coaching, tournaments, and training. Connect with players of all levels.", keywords: "chess club, coaching, tournaments, strategic thinking, board games", metadataBase: new URL("https://www.yourchessclub.com"),
alternates: {
canonical: "https://www.yourchessclub.com"},
openGraph: {
title: "Chess Club - Master the Game", description: "Join our vibrant chess community for expert coaching, tournaments, and training.", url: "https://www.yourchessclub.com", siteName: "Chess Club", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/transparent-chess-pieces-board_23-2148198771.jpg", alt: "Chess Club"},
],
},
twitter: {
card: "summary_large_image", title: "Chess Club - Master the Game", description: "Join our vibrant chess community for expert coaching, tournaments, and training.", images: ["http://img.b2bpic.net/free-photo/transparent-chess-pieces-board_23-2148198771.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: {
}: Readonly<{
children: React.ReactNode;
}) {
}>) {
return (
<html lang="en">
<body>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1378,6 +1413,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f0f7f0;
--foreground: #0d3e1f;
--primary-cta: #2d9d6f;
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #ffffffe6;
--primary-cta: #e6e6e6;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #1c1c1c;
--accent: #2d9d6f;
--background-accent: #a8e8ba;
--accent: #737373;
--background-accent: #737373;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);