Some cleaning

This commit is contained in:
2025-04-03 15:18:41 +02:00
parent b7e43ef351
commit 525e70c8bc
9 changed files with 145 additions and 285 deletions

View File

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