diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 249318b..df22644 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Open_Sans } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const openSans = Open_Sans({
- variable: "--font-open-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "BuildCraft | Expert Construction Services", description: "Premier construction company delivering residential, commercial, and infrastructure projects with quality, precision, and innovation. 500+ completed projects.", keywords: "construction, building, commercial, residential, renovation, contractor", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "BuildCraft | Expert Construction Services", description: "Premier construction company delivering exceptional results on residential, commercial, and infrastructure projects.", type: "website", siteName: "BuildCraft", images: [
- {
- url: "http://img.b2bpic.net/free-photo/woman-men-looking-laptop-construction_259150-57850.jpg", alt: "BuildCraft Construction Services"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "BuildCraft | Expert Construction Services", description: "Premier construction company with 500+ completed projects and 98% client satisfaction.", images: ["http://img.b2bpic.net/free-photo/woman-men-looking-laptop-construction_259150-57850.jpg"],
- },
-};
+ title: "BuildCraft - Expert Construction Services", description: "Professional construction company delivering on-time, on-budget projects with 98% client satisfaction. Residential, commercial, and infrastructure solutions."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-