This commit is contained in:
gpt-engineer-app[bot]
2026-01-06 14:46:23 +00:00
parent bebc3a2029
commit 0104839c11
25 changed files with 2955 additions and 79 deletions
+10 -9
View File
@@ -1,14 +1,15 @@
// Update this page (the content is just a fallback if you fail to update the page)
import { useEffect } from "react";
import { useNavigate } from "react-router-dom";
const Index = () => {
return (
<div className="flex min-h-screen items-center justify-center bg-background">
<div className="text-center">
<h1 className="mb-4 text-4xl font-bold">Welcome to Your Blank App</h1>
<p className="text-xl text-muted-foreground">Start building your amazing project here!</p>
</div>
</div>
);
const navigate = useNavigate();
useEffect(() => {
// Redirect to login for now - will be replaced with auth check
navigate("/login");
}, [navigate]);
return null;
};
export default Index;