Switch to version 1: modified src/app/layout.tsx

This commit is contained in:
2026-03-06 10:50:13 +00:00
parent 2bada79322
commit 872652d913

View File

@@ -7,30 +7,47 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
variable: "--font-open-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "PropSales - Premium Real Estate Platform | Showcase Your Properties", description: "Connect with builders and investors through our premium real estate platform. Browse ongoing and completed projects, list your properties, and grow your business.", keywords: "real estate, properties, builders, developers, real estate platform, property listings, ongoing projects, completed projects", metadataBase: new URL("https://propsales.com"),
title: "PropSales - Premium Real Estate Platform | Showcase Your Properties",
description: "Connect with builders and investors through our premium real estate platform. Browse ongoing and completed projects, list your properties, and grow your business.",
keywords: "real estate, properties, builders, developers, real estate platform, property listings, ongoing projects, completed projects",
metadataBase: new URL("https://propsales.com"),
alternates: {
canonical: "https://propsales.com"},
canonical: "https://propsales.com",
},
openGraph: {
title: "PropSales - Real Estate Solutions", description: "Showcase your real estate projects and connect with qualified buyers and investors on our premium platform.", url: "https://propsales.com", siteName: "PropSales", type: "website", images: [
title: "PropSales - Real Estate Solutions",
description: "Showcase your real estate projects and connect with qualified buyers and investors on our premium platform.",
url: "https://propsales.com",
siteName: "PropSales",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/modern-country-houses-construction_1385-15.jpg", alt: "PropSales Real Estate Platform"},
url: "http://img.b2bpic.net/free-photo/modern-balconies-with-geometric-shapes-glass-reflections-contemporary-facade_169016-68993.jpg",
alt: "PropSales Real Estate Platform",
},
],
},
twitter: {
card: "summary_large_image", title: "PropSales - Real Estate Platform", description: "Premium platform for showcasing real estate projects and connecting with investors", images: ["http://img.b2bpic.net/free-photo/modern-country-houses-construction_1385-15.jpg"],
card: "summary_large_image",
title: "PropSales - Real Estate Platform",
description: "Premium platform for showcasing real estate projects and connecting with investors",
images: ["http://img.b2bpic.net/free-photo/modern-balconies-with-geometric-shapes-glass-reflections-contemporary-facade_169016-68993.jpg"],
},
robots: {
index: true,
@@ -1422,4 +1439,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}