Basic example structure

This commit is contained in:
2025-04-03 16:00:44 +02:00
parent 525e70c8bc
commit 2fdfe9468c
10 changed files with 84 additions and 4 deletions

17
app/routes/_index.tsx Normal file
View File

@@ -0,0 +1,17 @@
import type { Route } from "./+types/_index";
export function meta(_obj: Route.MetaArgs) {
return [
{ title: "Rossini Energy Charge" },
{ name: "description", content: "App-less recharge system by Rossini Energy" },
];
}
export default function Homepage() {
return (
<div>
<h1>Demo Charge.re</h1>
<p>This page can be a view or just a basic redirect to rossinienergy.com</p>
</div>
);
}