diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index baf329e..dbc804b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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" } ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..3655a9b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}