/**
* Small page — a handful of elements, typical for a landing page hero section.
* ~20 elements, ~1KB HTML.
*/
export default function Small() {
return (
<main>
<header>
<nav>
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/contact">Contact</a>
</nav>
</header>
<section>
<h1>Welcome to Our Platform</h1>
<p>
Build modern web applications with server components. Fast, reliable,
and easy to use.
</p>
<div>
<button>Get Started</button>
<button>Learn More</button>
</div>
</section>
<footer>
<p>© 2026 Benchmark App</p>
</footer>
</main>
);
}