diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 134677a..6b30710 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,44 +1,20 @@
import type { Metadata } from "next";
-import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "@/styles/globals.css";
-const libreBaskerville = Libre_Baskerville({
- variable: "--font-libre-baskerville", subsets: ["latin"],
- weight: ["400", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "m2invest | Modern Homes & Solar Energy Solutions", description: "Discover sustainable residential architecture integrated with premium solar energy systems. m2invest builds modern homes designed for your lifestyle and our planet.", keywords: "modern homes, solar panels, sustainable architecture, residential construction, renewable energy, eco-friendly homes", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "m2invest | Modern Sustainable Homes", description: "Build your dream home with integrated solar energy technology", type: "website", siteName: "m2invest"},
- twitter: {
- card: "summary_large_image", title: "m2invest | Modern Homes with Solar Energy"},
-};
+ title: "m2invest", description: "Build your dream home with sustainable energy"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-