Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 34a05d0a0a | |||
| 20507e8c85 | |||
| 1fd78a40f5 | |||
| da44c14f79 | |||
| e6bbc0de59 | |||
| 9d13dcfae0 | |||
| 3daaab2335 | |||
| 3cb61dc9bd | |||
| 6cd8d31e8c | |||
| 406e32814d |
@@ -1,16 +1,51 @@
|
|||||||
import type { Metadata } from "next";
|
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 = {
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: {
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body>{children}
|
<ServiceWrapper>
|
||||||
|
<body
|
||||||
|
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||||
|
>
|
||||||
|
<Tag />
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1378,6 +1413,7 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #ffffff;
|
--background: #0a0a0a;
|
||||||
--card: #f0f5f0;
|
--card: #1a1a1a;
|
||||||
--foreground: #1a1a1a;
|
--foreground: #ffffffe6;
|
||||||
--primary-cta: #2d7d5a;
|
--primary-cta: #e6e6e6;
|
||||||
--primary-cta-text: #f5f5f5;
|
--primary-cta-text: #f5f5f5;
|
||||||
--secondary-cta: #f0f5f0;
|
--secondary-cta: #1a1a1a;
|
||||||
--secondary-cta-text: #1c1c1c;
|
--secondary-cta-text: #1c1c1c;
|
||||||
--accent: #2d7d5a;
|
--accent: #737373;
|
||||||
--background-accent: #c8e6d7;
|
--background-accent: #737373;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user