~repos /edge-city

#react#js#ssr

git clone https://pyrossh.dev/repos/edge-city.git

edge-city is a next level meta-framework for react that runs only on edge runtimes



example/src/pages/_404/page.jsx



import React from "react";
import { Helmet } from "react-helmet-async";
import "./page.css";
export default function Page() {
return (
<div className="notfound-page">
<Helmet>
<title>Page not found</title>
</Helmet>
<h1>404 - Page not found</h1>
<div className="content">
<h2>This page could not be found</h2>
</div>
</div>
);
}