react-server675fbba4
react-serverfilesexamplesbenchmarkpages(rsc)small.jsx
examples/benchmark/pages/(hybrid)/hybrid/small.jsxjsx746 B5ed57544
/**
 * 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>&copy; 2026 Benchmark App</p>
      </footer>
    </main>
  );
}