diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index a2d5af9..f2be36f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,49 +1,22 @@
import type { Metadata } from "next";
-import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const publicSans = Public_Sans({
- variable: "--font-public-sans", subsets: ["latin"],
-});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Property Scout - Premium Real Estate Development", description: "Leading real estate development company building luxury residential and commercial projects. Explore our portfolio and meet our expert team.", keywords: "real estate development, luxury apartments, commercial properties, residential projects, property development company", metadataBase: new URL("https://propertyscout.com"),
- alternates: {
- canonical: "https://propertyscout.com"
- },
- openGraph: {
- title: "Property Scout - Real Estate Development", description: "Building exceptional communities and developments. Discover our premium portfolio.", url: "https://propertyscout.com", siteName: "Property Scout", type: "website"
- },
- twitter: {
- card: "summary_large_image", title: "Property Scout - Premium Real Estate Development", description: "Transforming visions into reality. Explore our luxury projects."
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Property Scout", description: "Premier Real Estate Development"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-