Basic example structure
This commit is contained in:
17
app/routes/_index.tsx
Normal file
17
app/routes/_index.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user