Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f65a6d9db7 | |||
| 32396c5ba6 | |||
| 91eccd47e2 | |||
| feaac6a5ef | |||
| 5746bb704d | |||
| dec675d0fb | |||
| 4219476af6 |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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" }
|
||||||
|
|||||||
Reference in New Issue
Block a user