7 Commits

Author SHA1 Message Date
f65a6d9db7 Merge version_2 into main
Merge version_2 into main
2026-03-03 16:26:44 +00:00
32396c5ba6 Update src/app/page.tsx 2026-03-03 16:26:28 +00:00
91eccd47e2 Update src/app/layout.tsx 2026-03-03 16:26:23 +00:00
feaac6a5ef Merge version_1 into main
Merge version_1 into main
2026-03-03 16:23:46 +00:00
5746bb704d Merge version_1 into main
Merge version_1 into main
2026-03-03 16:07:17 +00:00
dec675d0fb Merge version_1 into main
Merge version_1 into main
2026-03-03 16:00:49 +00:00
4219476af6 Merge version_1 into main
Merge version_1 into main
2026-03-03 15:56:30 +00:00
2 changed files with 9 additions and 37 deletions

View File

@@ -1,49 +1,22 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; 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({ const inter = Inter({
variable: "--font-inter", subsets: ["latin"], variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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"), title: "Property Scout", description: "Premier Real Estate Development"};
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
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${inter.variable}`}>{children}
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1384,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -41,15 +41,15 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCentered <HeroCentered
title="Grow your business " title="Property Scout"
description="with our expertise in property scouting and real estate development " description="Discover exceptional real estate opportunities and invest with confidence"
background={{ variant: "downward-rays-static" }} background={{ variant: "downward-rays-static" }}
avatars={[ avatars={[
{ {
src: "http://img.b2bpic.net/free-photo/top-old-apartment-building-with-metal-projectiles-roof-clear-blue-sky_181624-2510.jpg", alt: "Modern real estate development" src: "http://img.b2bpic.net/free-photo/top-old-apartment-building-with-metal-projectiles-roof-clear-blue-sky_181624-2510.jpg", alt: "Property Scout Logo"
} }
]} ]}
avatarText="Trusted by thousands of homeowners and investors" avatarText="Building Tomorrow's Communities"
buttons={[ buttons={[
{ text: "View Our Projects", href: "#projects" }, { text: "View Our Projects", href: "#projects" },
{ text: "Get in Touch", href: "#contact" } { text: "Get in Touch", href: "#contact" }