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 { Inter_Tight } from "next/font/google";
import "./globals.css";
@@ -6,16 +5,12 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const interTight = Inter_Tight({
variable: "--font-inter-tight",
subsets: ["latin"],
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
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",
};
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"};
export default function RootLayout({
children,
@@ -1250,5 +1245,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
]]>
}