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 ; }