Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-11 03:38:00 +00:00
4 changed files with 67 additions and 33 deletions

View File

@@ -91,7 +91,7 @@ export default function AboutPage() {
tag="Industry Pioneer"
tagIcon={Award}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-architect-man-holding-cellphone-hard-hat-with-blueprint-construction-site_23-2148203937.jpg"
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-architect-man-holding-cellphone-hard-hat-with-blueprint-construction-site_23-2148203937.jpg?_wi=2"
imageAlt="Kobi Elbaz - Real Estate Developer"
useInvertedBackground={false}
buttons={[
@@ -111,28 +111,28 @@ export default function AboutPage() {
id: "01",
title: "Sustainable Design",
description: "LEED-certified buildings with state-of-the-art energy efficiency and environmental responsibility built into every project.",
imageSrc: "http://img.b2bpic.net/free-photo/cityscape-wuxi_1127-3952.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cityscape-wuxi_1127-3952.jpg?_wi=2",
imageAlt: "Sustainable building design"
},
{
id: "02",
title: "Luxury Amenities",
description: "World-class facilities including infinity pools, spa, fitness centers, and private concierge services in every development.",
imageSrc: "http://img.b2bpic.net/free-photo/silhouette-corporate-woman-suit-walking-along-city-center-near-office-buildings_1258-121027.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/silhouette-corporate-woman-suit-walking-along-city-center-near-office-buildings_1258-121027.jpg?_wi=2",
imageAlt: "Luxury amenity swimming pool"
},
{
id: "03",
title: "Smart Technology",
description: "Integrated smart home systems with cutting-edge building automation and modern connectivity throughout.",
imageSrc: "http://img.b2bpic.net/free-photo/team-solar-panels-plant-managers-engineer-discussing_482257-119631.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/team-solar-panels-plant-managers-engineer-discussing_482257-119631.jpg?_wi=2",
imageAlt: "Smart home technology"
},
{
id: "04",
title: "Premium Security",
description: "24/7 concierge, advanced security systems, and white-glove service ensuring peace of mind and exclusivity.",
imageSrc: "http://img.b2bpic.net/free-photo/data-center-team-using-mockup-green-screen-tablet-reviewing-paperwork_482257-120691.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/data-center-team-using-mockup-green-screen-tablet-reviewing-paperwork_482257-120691.jpg?_wi=2",
imageAlt: "Building security system"
}
]}
@@ -155,28 +155,28 @@ export default function AboutPage() {
id: "1",
name: "Kobi Elbaz",
role: "Founder & CEO",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-businessman-with-big-smile_1098-3534.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-businessman-with-big-smile_1098-3534.jpg?_wi=2",
imageAlt: "Kobi Elbaz"
},
{
id: "2",
name: "Sarah Mitchell",
role: "Chief Development Officer",
imageSrc: "http://img.b2bpic.net/free-photo/image-beautiful-woman-smile-camera-city_197531-33545.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/image-beautiful-woman-smile-camera-city_197531-33545.jpg?_wi=2",
imageAlt: "Sarah Mitchell"
},
{
id: "3",
name: "Marco Rodriguez",
role: "Chief Architect",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-car-mechanic-car-repair-shop_23-2150367540.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-car-mechanic-car-repair-shop_23-2150367540.jpg?_wi=2",
imageAlt: "Marco Rodriguez"
},
{
id: "4",
name: "James Chen",
role: "Director of Operations",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1641.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1641.jpg?_wi=2",
imageAlt: "James Chen"
}
]}

View File

@@ -1,24 +1,56 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Kobi Elbaz - Premier Real Estate Developer Miami",
description: "Discover luxury real estate developments in Miami by Kobi Elbaz. 25+ years of expertise in creating exceptional waterfront residences and mixed-use complexes.",
keywords: "real estate developer Miami, luxury residences, waterfront property, Miami penthouse, development projects",
openGraph: {
title: "Kobi Elbaz - Miami's Premier Real Estate Developer",
description: "Experience luxury developments that redefine waterfront living in Miami.",
siteName: "Kobi Elbaz Developments",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/beautiful-shot-resort-lanzarote-spain-sunny-day_181624-23163.jpg",
alt: "Luxury Miami property development"
}
]
},
twitter: {
card: "summary_large_image",
title: "Kobi Elbaz - Premier Real Estate Developer",
description: "Discover Miami's most prestigious luxury developments",
images: ["http://img.b2bpic.net/free-photo/beautiful-shot-resort-lanzarote-spain-sunny-day_181624-23163.jpg"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +59,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +73,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -143,7 +143,7 @@ export default function HomePage() {
tag="Industry Pioneer"
tagIcon={Award}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-architect-man-holding-cellphone-hard-hat-with-blueprint-construction-site_23-2148203937.jpg"
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-architect-man-holding-cellphone-hard-hat-with-blueprint-construction-site_23-2148203937.jpg?_wi=1"
imageAlt="Kobi Elbaz - Real Estate Developer"
useInvertedBackground={false}
buttons={[{ text: "Learn More About Us", href: "/properties" }]}
@@ -165,7 +165,7 @@ export default function HomePage() {
description:
"LEED-certified buildings with state-of-the-art energy efficiency and environmental responsibility built into every project.",
imageSrc:
"http://img.b2bpic.net/free-photo/cityscape-wuxi_1127-3952.jpg",
"http://img.b2bpic.net/free-photo/cityscape-wuxi_1127-3952.jpg?_wi=1",
imageAlt: "Sustainable building design green architecture",
},
{
@@ -174,7 +174,7 @@ export default function HomePage() {
description:
"World-class facilities including infinity pools, spa, fitness centers, and private concierge services in every development.",
imageSrc:
"http://img.b2bpic.net/free-photo/silhouette-corporate-woman-suit-walking-along-city-center-near-office-buildings_1258-121027.jpg",
"http://img.b2bpic.net/free-photo/silhouette-corporate-woman-suit-walking-along-city-center-near-office-buildings_1258-121027.jpg?_wi=1",
imageAlt: "Luxury amenity swimming pool building",
},
{
@@ -183,7 +183,7 @@ export default function HomePage() {
description:
"Integrated smart home systems with cutting-edge building automation and modern connectivity throughout.",
imageSrc:
"http://img.b2bpic.net/free-photo/team-solar-panels-plant-managers-engineer-discussing_482257-119631.jpg",
"http://img.b2bpic.net/free-photo/team-solar-panels-plant-managers-engineer-discussing_482257-119631.jpg?_wi=1",
imageAlt: "Smart home technology building automation",
},
{
@@ -192,7 +192,7 @@ export default function HomePage() {
description:
"24/7 concierge, advanced security systems, and white-glove service ensuring peace of mind and exclusivity.",
imageSrc:
"http://img.b2bpic.net/free-photo/data-center-team-using-mockup-green-screen-tablet-reviewing-paperwork_482257-120691.jpg",
"http://img.b2bpic.net/free-photo/data-center-team-using-mockup-green-screen-tablet-reviewing-paperwork_482257-120691.jpg?_wi=1",
imageAlt: "Luxury building security system technology",
},
]}
@@ -241,7 +241,7 @@ export default function HomePage() {
price: "$2.5M - $8.5M",
variant: "45 Units • Waterfront • Miami Beach",
imageSrc:
"http://img.b2bpic.net/free-photo/high-rise-financial-building-facade-sunny-day_23-2148184223.jpg",
"http://img.b2bpic.net/free-photo/high-rise-financial-building-facade-sunny-day_23-2148184223.jpg?_wi=1",
imageAlt: "Solara Residences",
},
{
@@ -250,7 +250,7 @@ export default function HomePage() {
price: "$1.8M - $6.2M",
variant: "62 Units • Downtown • Luxury High-Rise",
imageSrc:
"http://img.b2bpic.net/free-photo/giant-glass-bulding_1203-811.jpg",
"http://img.b2bpic.net/free-photo/giant-glass-bulding_1203-811.jpg?_wi=1",
imageAlt: "Zenith Tower",
},
{
@@ -259,7 +259,7 @@ export default function HomePage() {
price: "$3.2M - $12M",
variant: "28 Units • Oceanfront • Premium Residences",
imageSrc:
"http://img.b2bpic.net/free-photo/vertical-low-angle-shot-modern-stone-building-blue-sky-background_181624-38424.jpg",
"http://img.b2bpic.net/free-photo/vertical-low-angle-shot-modern-stone-building-blue-sky-background_181624-38424.jpg?_wi=1",
imageAlt: "Coastal Paradise",
},
]}

View File

@@ -92,7 +92,7 @@ export default function PropertiesPage() {
price: "$2.5M - $8.5M",
variant: "45 Units • Waterfront • Miami Beach",
imageSrc:
"http://img.b2bpic.net/free-photo/high-rise-financial-building-facade-sunny-day_23-2148184223.jpg",
"http://img.b2bpic.net/free-photo/high-rise-financial-building-facade-sunny-day_23-2148184223.jpg?_wi=2",
imageAlt: "Solara Residences",
},
{
@@ -101,7 +101,7 @@ export default function PropertiesPage() {
price: "$1.8M - $6.2M",
variant: "62 Units • Downtown • Luxury High-Rise",
imageSrc:
"http://img.b2bpic.net/free-photo/giant-glass-bulding_1203-811.jpg",
"http://img.b2bpic.net/free-photo/giant-glass-bulding_1203-811.jpg?_wi=2",
imageAlt: "Zenith Tower",
},
{
@@ -110,7 +110,7 @@ export default function PropertiesPage() {
price: "$3.2M - $12M",
variant: "28 Units • Oceanfront • Premium Residences",
imageSrc:
"http://img.b2bpic.net/free-photo/vertical-low-angle-shot-modern-stone-building-blue-sky-background_181624-38424.jpg",
"http://img.b2bpic.net/free-photo/vertical-low-angle-shot-modern-stone-building-blue-sky-background_181624-38424.jpg?_wi=2",
imageAlt: "Coastal Paradise",
},
{
@@ -119,7 +119,7 @@ export default function PropertiesPage() {
price: "$1.5M - $5.8M",
variant: "38 Units • Urban Core • Modern Living",
imageSrc:
"http://img.b2bpic.net/free-photo/high-rise-financial-building-facade-sunny-day_23-2148184223.jpg",
"http://img.b2bpic.net/free-photo/high-rise-financial-building-facade-sunny-day_23-2148184223.jpg?_wi=3",
imageAlt: "Skyline Towers",
},
]}
@@ -145,7 +145,7 @@ export default function PropertiesPage() {
name: "Kobi Elbaz",
role: "Founder & CEO",
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-young-businessman-with-big-smile_1098-3534.jpg",
"http://img.b2bpic.net/free-photo/close-up-young-businessman-with-big-smile_1098-3534.jpg?_wi=1",
imageAlt: "Kobi Elbaz",
},
{
@@ -153,7 +153,7 @@ export default function PropertiesPage() {
name: "Sarah Mitchell",
role: "Chief Development Officer",
imageSrc:
"http://img.b2bpic.net/free-photo/image-beautiful-woman-smile-camera-city_197531-33545.jpg",
"http://img.b2bpic.net/free-photo/image-beautiful-woman-smile-camera-city_197531-33545.jpg?_wi=1",
imageAlt: "Sarah Mitchell",
},
{
@@ -161,7 +161,7 @@ export default function PropertiesPage() {
name: "Marco Rodriguez",
role: "Chief Architect",
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-male-car-mechanic-car-repair-shop_23-2150367540.jpg",
"http://img.b2bpic.net/free-photo/portrait-male-car-mechanic-car-repair-shop_23-2150367540.jpg?_wi=1",
imageAlt: "Marco Rodriguez",
},
{
@@ -169,7 +169,7 @@ export default function PropertiesPage() {
name: "James Chen",
role: "Director of Operations",
imageSrc:
"http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1641.jpg",
"http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1641.jpg?_wi=1",
imageAlt: "James Chen",
},
]}