diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b4e2bb4..a88944a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1431 +1,58 @@ -import type { Metadata } from "next"; -import { Libre_Baskerville, Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +'use client'; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], -}); +import type { Metadata } from 'next'; +import { Lora } from 'next/font/google'; +import './globals.css'; +import { ServiceWrapper } from '@/components/common/ServiceWrapper'; +import { Tag } from '@/components/common/Tag'; -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const lora = Lora({ + variable: '--font-lora', + subsets: ['latin'], + weight: ['400', '500', '600', '700'], }); export const metadata: Metadata = { - title: "Wah Wai - Professional Renovation Contractor Singapore", - description: "Expert renovation contractor in Singapore specializing in residential and commercial projects. Transform your space with quality craftsmanship and professional service.", - keywords: "renovation contractor Singapore, home renovation, kitchen renovation, bathroom renovation, commercial renovation, HDB renovation", - metadataBase: new URL("https://wahwai.sg"), - alternates: { - canonical: "https://wahwai.sg", - }, - openGraph: { - title: "Wah Wai - Professional Renovation Contractor Singapore", - description: "Expert renovation contractor in Singapore specializing in residential and commercial projects.", - url: "https://wahwai.sg", - siteName: "Wah Wai Renovation", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg", - alt: "Wah Wai Renovation - Professional Renovation Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Wah Wai - Professional Renovation Contractor Singapore", - description: "Expert renovation contractor in Singapore specializing in residential and commercial projects.", - images: ["http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Contact Us', + description: 'Get in touch with us', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +