Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 22:07:15 +00:00
2 changed files with 10 additions and 54 deletions

View File

@@ -1,63 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Prime City Realty - Luxury Real Estate in the City",
description: "Find your dream home with Prime City Realty. Browse luxury properties, schedule viewings, and work with expert agents in your area.",
keywords: "real estate, luxury homes, property listings, buy home, sell property, real estate agent, property finder",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Prime City Realty - Find Your Dream Home",
description: "Discover premium properties and connect with expert real estate agents.",
type: "website",
siteName: "Prime City Realty",
images: [
{
url: "http://img.b2bpic.net/free-photo/type-luxurious-summer-villa-hotel-amara-dolce-vita-luxury-hotel-beautiful-architecture-tekirova-kemer-turkey_146671-18715.jpg",
alt: "Prime City Realty - Luxury Homes",
},
],
},
twitter: {
card: "summary_large_image",
title: "Prime City Realty - Luxury Properties",
description: "Browse beautiful homes and connect with real estate experts.",
images: ["http://img.b2bpic.net/free-photo/type-luxurious-summer-villa-hotel-amara-dolce-vita-luxury-hotel-beautiful-architecture-tekirova-kemer-turkey_146671-18715.jpg"],
},
};
title: "Prime City Realty - Find Your Dream Home", description: "Discover premium properties in the city's most desirable neighborhoods with Prime City Realty."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={dmSans.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1425,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -126,7 +126,7 @@ export default function HomePage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
title="What Our Clients Say"
description="Real success stories from happy buyers and sellers"
description="Trusted by 500+ satisfied clients across the city"
tag="Testimonials"
testimonials={[
{
@@ -177,4 +177,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}