35150-vm/index.php
Flatlogic Bot 6c8fd54e9c v1.0.0
2025-10-23 20:41:22 +00:00

103 lines
5.9 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Meta Tags -->
<title>RentEaze Pro - Next-Generation Property Discovery</title>
<meta name="description" content="RentEaze Pro is a premium, AI-powered house hunting application that transforms property discovery into an immersive 3D experience. Built with Flatlogic Generator.">
<meta name="keywords" content="house hunting, property rental, 3d property tour, ai property matching, premium real estate, apartment finder, virtual reality tours, luxury rentals, smart budget, neighborhood insights, landlord tools, Built with Flatlogic Generator">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:title" content="RentEaze Pro - Next-Generation Property Discovery">
<meta property="og:description" content="Experience the future of house hunting with immersive 3D tours and AI-powered recommendations.">
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="RentEaze Pro - Next-Generation Property Discovery">
<meta property="twitter:description" content="Experience the future of house hunting with immersive 3D tours and AI-powered recommendations.">
<meta property="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
<!-- Bootstrap 5 CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<header class="container mt-4">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="#">RentEaze Pro</a>
</div>
</nav>
</header>
<main>
<section class="hero-section container">
<div class="hero-content">
<h1 class="display-3 mb-4">Discover Your Next Home in <span class="gradient-text">3D</span></h1>
<p class="lead mb-5" style="color: var(--text-secondary);">The future of property discovery is here. <br>Immersive, intelligent, and instant.</p>
<a href="#properties" class="btn btn-premium btn-lg">Start Intelligent Discovery</a>
</div>
</section>
<section id="properties" class="container py-5">
<h2 class="text-center mb-5">Featured Premium Listings</h2>
<div class="property-grid">
<!-- Property Card 1 -->
<div class="property-card-premium glass-card">
<img src="https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" class="card-img-top" alt="Modern Living Room">
<div class="card-body">
<h5 class="card-title">Skyview Penthouse</h5>
<p class="card-text">Downtown, Financial District</p>
<div class="d-flex justify-content-between align-items-center">
<span class="price">$4,200<span class="price-period">/month</span></span>
<a href="#" class="btn btn-outline-light btn-sm">View Tour</a>
</div>
</div>
</div>
<!-- Property Card 2 -->
<div class="property-card-premium glass-card">
<img src="https://images.pexels.com/photos/2102587/pexels-photo-2102587.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" class="card-img-top" alt="Cozy Apartment">
<div class="card-body">
<h5 class="card-title">The Urban Loft</h5>
<p class="card-text">Arts District</p>
<div class="d-flex justify-content-between align-items-center">
<span class="price">$2,800<span class="price-period">/month</span></span>
<a href="#" class="btn btn-outline-light btn-sm">View Tour</a>
</div>
</div>
</div>
<!-- Property Card 3 -->
<div class="property-card-premium glass-card">
<img src="https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" class="card-img-top" alt="Luxury Condo">
<div class="card-body">
<h5 class="card-title">Serenity Suite</h5>
<p class="card-text">Greenwich Village</p>
<div class="d-flex justify-content-between align-items-center">
<span class="price">$3,500<span class="price-period">/month</span></span>
<a href="#" class="btn btn-outline-light btn-sm">View Tour</a>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="container text-center py-5">
<p style="color: var(--text-secondary);">&copy; <?php echo date("Y"); ?> RentEaze Pro. All rights reserved. Built with Flatlogic.</p>
</footer>
<!-- Bootstrap 5 JS Bundle -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<!-- Custom JS -->
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>