diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7fa87e..955aec5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,34 +1,28 @@ -import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import { QueryProvider } from '@/providers/QueryProvider'; +import './globals.css'; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: 'CompareWare - Item Comparison Tool', + description: 'Compare and manage items with their properties using Wikidata integration', + keywords: ['comparison', 'items', 'wikidata', 'properties', 'database'], }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( -
- {children} + +