Update src/app/layout.tsx

This commit is contained in:
2026-01-15 13:06:24 +00:00
parent 844b13ceea
commit 609ae91aa4

View File

@@ -1,4 +1,3 @@
<![CDATA[
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Inter_Tight } from "next/font/google"; import { Inter_Tight } from "next/font/google";
import "./globals.css"; import "./globals.css";
@@ -6,16 +5,12 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const interTight = Inter_Tight({ const interTight = Inter_Tight({
variable: "--font-inter-tight", variable: "--font-inter-tight", subsets: ["latin"],
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Remember - Your Literary Community | Book Club", title: "Remember - Your Literary Community | Book Club", description: "Join Remember, a thriving book club community where passionate readers discover great literature, share insights, and build lasting connections through meaningful discussions.", keywords: "book club, reading community, literature, book discussions, book lovers"};
description: "Join Remember, a thriving book club community where passionate readers discover great literature, share insights, and build lasting connections through meaningful discussions.",
keywords: "book club, reading community, literature, book discussions, book lovers",
};
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -1251,4 +1246,3 @@ export default function RootLayout({
</html> </html>
); );
} }
]]>