diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9d8183a..af07abe 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,15 @@ import type { Metadata } from 'next'; -import { Geist, Geist_Mono } from 'next/font/google'; +import { DM_Sans } from 'next/font/google'; import './globals.css'; -const geist = Geist({ - variable: '--font-geist-sans', - subsets: ['latin'], -}); - -const geistMono = Geist_Mono({ - variable: '--font-geist-mono', +const dmSans = DM_Sans({ + variable: '--font-dm-sans', subsets: ['latin'], }); export const metadata: Metadata = { - title: 'KDC Plumbing - Emergency Repairs in Sri Lanka', - description: 'Fast & reliable plumbing repairs. 24/7 emergency support, leak detection, tank replacement & more.', + title: 'Modern SaaS Landing Page', + description: 'Premium minimalist design with soft gradients and floating UI cards', }; export default function RootLayout({ @@ -24,7 +19,7 @@ export default function RootLayout({ }) { return ( - + {children}