Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 32396c5ba6 | |||
| 91eccd47e2 | |||
| feaac6a5ef | |||
| 5746bb704d | |||
| dec675d0fb | |||
| 4219476af6 |
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${inter.variable}`}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -41,15 +41,15 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
title="Grow your business "
|
||||
description="with our expertise in property scouting and real estate development "
|
||||
title="Property Scout"
|
||||
description="Discover exceptional real estate opportunities and invest with confidence"
|
||||
background={{ variant: "downward-rays-static" }}
|
||||
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={[
|
||||
{ text: "View Our Projects", href: "#projects" },
|
||||
{ text: "Get in Touch", href: "#contact" }
|
||||
|
||||
Reference in New Issue
Block a user