"use client"; import { useState } from "react"; import Image from "next/image"; import { Building2, MapPin, Tag, Plus, Search, Home, LayoutGrid, List as ListIcon, Trash2, Edit3, ExternalLink } from "lucide-react"; export function PropertiesView() { const [viewMode, setViewMode] = useState<"grid" | "list">("grid"); const properties = [ { id: 1, title: "فيلا مودرن - حي النرجس", type: "Villa", price: "3,200,000 ر.س", area: "350m²", status: "Available", image: "https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=800&auto=format&fit=crop&q=60", location: "الرياض، حي النرجس" }, { id: 2, title: "شقة استثمارية - مجمع الماجدية", type: "Apartment", price: "1,150,000 ر.س", area: "145m²", status: "Reserved", image: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=800&auto=format&fit=crop&q=60", location: "الرياض، حي الياسمين" }, { id: 3, title: "أرض تجارية - طريق الملك فهد", type: "Land", price: "12,000,000 ر.س", area: "1200m²", status: "Available", image: "https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=800&auto=format&fit=crop&q=60", location: "الرياض، العقيق" } ]; return (

🏠 إدارة المخزون العقاري

أضف وِراقب العقارات التي يقوم وكلاء الذكاء الاصطناعي بتسويقها حالياً.

{viewMode === "grid" ? (
{properties.map((prop) => (
{prop.title}
{prop.status === 'Available' ? 'متاح' : 'محجوز'}

{prop.title}

ID: #{prop.id}
{prop.location}
السعر المطلوب {prop.price}
المساحة {prop.area}
))}
) : (
{properties.map((prop) => ( ))}
العقار النوع السعر الموقع الحالة الإجراءات
{prop.title} {prop.type} {prop.price} {prop.location} {prop.status === 'Available' ? 'متاح' : 'محجوز'}
)}
); }