Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 10:44:58 +00:00
2 changed files with 17 additions and 56 deletions

View File

@@ -1,61 +1,20 @@
import type { Metadata } from "next";
import { Inter_Tight } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const interTight = Inter_Tight({
variable: "--font-inter-tight",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
import type { Metadata } from 'next';
import { GeistSans } from 'geist/font/sans';
import './globals.css';
export const metadata: Metadata = {
title: "PropertySync - Real Estate Investment Platform & Syndication",
description: "PropertySync connects investment properties with major real estate portals like Zillow and Realtor.com. Buy, sell, and invest in premium properties nationwide with expert guidance.",
keywords: "real estate investment, property listings, investment opportunities, Zillow syndication, Realtor.com, MLS, commercial real estate, residential investment",
metadataBase: new URL("https://propertysync.com"),
alternates: {
canonical: "https://propertysync.com",
},
openGraph: {
title: "PropertySync - Your Real Estate Investment Platform",
description: "Discover premium investment properties syndicated to Zillow, Realtor.com, and major MLS boards nationwide.",
siteName: "PropertySync",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/modern-balconies-with-geometric-shapes-glass-reflections-contemporary-facade_169016-68993.jpg",
alt: "PropertySync - Investment Real Estate Platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "PropertySync - Real Estate Investment Platform",
description: "Find and invest in premium properties syndicated across the nation's leading real estate platforms.",
images: [
"http://img.b2bpic.net/free-photo/modern-balconies-with-geometric-shapes-glass-reflections-contemporary-facade_169016-68993.jpg",
],
},
robots: {
index: true,
follow: true,
},
title: 'PropertySync - Real Estate Investment Platform',
description: 'Discover premium investment properties syndicated across the nation\'s leading real estate platforms.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={GeistSans.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1423,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -25,6 +25,7 @@ import {
MessageSquare,
HelpCircle,
Home,
CheckCircle,
} from "lucide-react";
export default function HomePage() {
@@ -114,17 +115,19 @@ export default function HomePage() {
animationType="slide-up"
useInvertedBackground={false}
gridVariant="three-columns-all-equal-width"
cardClassName="border-l-4 border-l-green-500/40 bg-gradient-to-br from-green-50/30 to-transparent dark:from-green-950/20"
cardBrandClassName="text-xs font-bold uppercase tracking-wider text-green-600 dark:text-green-400 flex items-center gap-1.5"
products={[
{
id: "1", brand: "Commercial District", name: "Downtown Office Complex - Houston, TX", price: "$2,850,000", rating: 5,
id: "1", brand: "✓ Verified Commercial District", name: "Downtown Office Complex - Houston, TX", price: "$2,850,000", rating: 5,
reviewCount: "127", imageSrc:
"http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-553.jpg", imageAlt: "Modern downtown office building"},
{
id: "2", brand: "Residential Mixed-Use", name: "Luxury Apartment Building - Miami, FL", price: "$4,200,000", rating: 5,
id: "2", brand: "✓ Verified Residential Mixed-Use", name: "Luxury Apartment Building - Miami, FL", price: "$4,200,000", rating: 5,
reviewCount: "89", imageSrc:
"http://img.b2bpic.net/free-photo/miami-beach-ocean-view_649448-234.jpg", imageAlt: "Luxury residential apartment complex"},
{
id: "3", brand: "Retail Investment", name: "Retail Shopping Center - Austin, TX", price: "$3,100,000", rating: 5,
id: "3", brand: "✓ Verified Retail Investment", name: "Retail Shopping Center - Austin, TX", price: "$3,100,000", rating: 5,
reviewCount: "156", imageSrc:
"http://img.b2bpic.net/free-photo/indoor-hotel-view_1417-1566.jpg", imageAlt: "Modern retail shopping center"},
]}
@@ -340,4 +343,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}