diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c536514..c08c78a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,19 +1,21 @@ -import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; -import ServiceWrapper from "@/components/service/ServiceWrapper"; -import { Tag } from "@/components/ui/tag"; +'use client'; -const geistSans = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], -}); +import type { Metadata } from 'next'; +import { Inter_Tight } from 'next/font/google'; +import './globals.css'; +import { ServiceWrapper } from '@/context/ServiceWrapper'; +import { Tag } from '@/components/tag'; -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: '--font-inter-tight', + subsets: ['latin'], + weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'], }); export const metadata: Metadata = { - title: "CarLed - Petrolhead Community", description: "Discover the passion and innovation behind CarLed, celebrating the petrolhead community."}; + title: 'Create Next App', + description: 'Generated by create next app', +}; export default function RootLayout({ children, @@ -22,14 +24,19 @@ export default function RootLayout({ }) { return ( -
+