06/16 Phase 6 (continue)

This commit is contained in:
2026-06-17 17:06:43 -04:00
parent 479afde2fa
commit 68a842d6b6
26 changed files with 1027 additions and 61 deletions
+61
View File
@@ -0,0 +1,61 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Classifieds — Home</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<header class="site-header">
<div class="wrap">
<a class="brand" href="/">Classifieds</a>
<nav class="nav">
<a href="/listings">Browse</a>
<a href="/pricing">Pricing</a>
<a href="/auth/login">Sign in</a>
<a class="btn" href="/auth/register">Register</a>
<span class="langs">
<a href="/lang/en"
class="on">EN</a>
<a href="/lang/vi"
class="">VI</a>
<a href="/lang/es"
class="">ES</a>
</span>
</nav>
</div>
</header>
<main class="wrap">
<section class="hero">
<h1>Find what you need. Post what you offer.</h1>
<p>Buy, sell, request, hire, and connect across your community.</p>
<a class="btn btn-lg" href="/listings">Browse listings</a>
<a class="btn btn-lg ghost" href="/auth/register">Get started</a>
</section>
</main>
<footer class="site-footer">
<div class="wrap">© 2025 Classifieds · <a href="/sponsors">Sponsors</a></div>
</footer>
</body>
</html>