Merge version_2 into main #4
@@ -1,51 +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 - 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,
|
||||
},
|
||||
};
|
||||
title: "Chess Club", description: "Join our vibrant chess community"};
|
||||
|
||||
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>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1378,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f5f5f5;
|
||||
--card: #ffffff;
|
||||
--foreground: #1c1c1c;
|
||||
--primary-cta: #1c1c1c;
|
||||
--background: #ffffff;
|
||||
--card: #f0f5f0;
|
||||
--foreground: #1a1a1a;
|
||||
--primary-cta: #2d7d5a;
|
||||
--primary-cta-text: #f5f5f5;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta: #f0f5f0;
|
||||
--secondary-cta-text: #1c1c1c;
|
||||
--accent: #6139e6;
|
||||
--background-accent: #b3a8e8;
|
||||
--accent: #2d7d5a;
|
||||
--background-accent: #c8e6d7;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user