dmease's picture
please make the nav bar work
960d34c verified
Raw
History Blame Contribute Delete
3.81 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - PropValue Wizard</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-12 max-w-4xl">
<section class="bg-white rounded-xl shadow-lg p-8">
<h1 class="text-3xl font-bold text-indigo-700 mb-6">About PropValue Wizard</h1>
<div class="prose max-w-none">
<p class="text-lg text-gray-700 mb-6">
PropValue Wizard is a comprehensive property evaluation tool designed for real estate investors,
helping them make smart investment decisions with accurate calculations and projections.
</p>
<div class="grid md:grid-cols-2 gap-8 mb-8">
<div>
<h2 class="text-xl font-semibold mb-4">Our Features</h2>
<ul class="space-y-3">
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 mr-2 mt-1"></i>
<span>Detailed financial analysis</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 mr-2 mt-1"></i>
<span>Automatic market comparisons</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 mr-2 mt-1"></i>
<span>Customizable investment metrics</span>
</li>
</ul>
</div>
<div>
<h2 class="text-xl font-semibold mb-4">Benefits</h2>
<ul class="space-y-3">
<li class="flex items-start">
<i data-feather="zap" class="text-yellow-500 mr-2 mt-1"></i>
<span>Save time analyzing properties</span>
</li>
<li class="flex items-start">
<i data-feather="bar-chart-2" class="text-blue-500 mr-2 mt-1"></i>
<span>Make data-driven decisions</span>
</li>
<li class="flex items-start">
<i data-feather="dollar-sign" class="text-green-500 mr-2 mt-1"></i>
<span>Maximize your investment returns</span>
</li>
</ul>
</div>
</div>
<div class="border-t pt-6">
<h2 class="text-xl font-semibold mb-4">Contact Us</h2>
<p class="text-gray-700">
Have questions? Email us at <a href="mailto:info@propvaluewizard.com" class="text-indigo-600 hover:underline">info@propvaluewizard.com</a>
</p>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>feather.replace();</script>
</body>
</html>