react-server675fbba4
react-servertreemainexamplestyped-file-routerpagesabout.tsx
examples/typed-file-router/pages/about.tsxtsx272 Bf47c9f64
import { about } from "@lazarv/react-server/routes";

export default about.createPage(() => {
  return (
    <div>
      <h1>About</h1>
      <p>
        This is a simple page with no dynamic params — auto-named "about" from
        path.
      </p>
    </div>
  );
});