From 0647d5f90eb9f14fcd6a31b593bbe2c44c18fc0a Mon Sep 17 00:00:00 2001 From: AINDUSTRIES Date: Sun, 16 Mar 2025 23:42:00 +0100 Subject: [PATCH] Moved and renamed homepage --- app/{index.tsx => pages/home.tsx} | 6 +++--- app/routes/home.tsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) rename app/{index.tsx => pages/home.tsx} (96%) diff --git a/app/index.tsx b/app/pages/home.tsx similarity index 96% rename from app/index.tsx rename to app/pages/home.tsx index 55210fa..fc65370 100644 --- a/app/index.tsx +++ b/app/pages/home.tsx @@ -1,8 +1,8 @@ import { useState } from "react"; -import "./app.css"; +import "../app.css"; import { motion } from "motion/react"; -export function Welcome() { +export function HomePage() { const [rolling, setRolling] = useState(false); const [showResetPopup, setShowResetPopup] = useState(false); @@ -44,7 +44,7 @@ export function Welcome() {
; + return ; }