Moved and renamed homepage

This commit is contained in:
2025-03-16 23:42:00 +01:00
parent f065c31fc3
commit 0647d5f90e
2 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
import type { Route } from "./+types/home";
import { Welcome } from "../index";
import { HomePage } from "../pages/home";
export function meta({}: Route.MetaArgs) {
return [
@@ -9,5 +9,5 @@ export function meta({}: Route.MetaArgs) {
}
export default function Home() {
return <Welcome />;
return <HomePage />;
}