diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 112761c..dcf237a 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,52 +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: "BuildCorp | Professional Construction Services", description: "Expert construction company specializing in residential, commercial, and renovation projects. 15+ years of excellence with 500+ completed projects.", keywords: "construction company, residential construction, commercial construction, renovation services, builders, construction contractor", metadataBase: new URL("https://buildcorp.com"),
- alternates: {
- canonical: "https://buildcorp.com"},
- openGraph: {
- title: "BuildCorp | Professional Construction Services", description: "Building excellence, one project at a time. Expert construction solutions for all your needs.", url: "https://buildcorp.com", siteName: "BuildCorp", type: "website"},
- twitter: {
- card: "summary_large_image", title: "BuildCorp | Professional Construction Services", description: "Expert construction company specializing in residential, commercial, and renovation projects."},
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "BuildCorp - Premium Construction Solutions", description: "Expert construction services for residential, commercial, and renovation projects"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-