first user setup and login

This commit is contained in:
2025-06-23 13:27:45 -04:00
parent bbe5eb0ccd
commit 12148e642d
13 changed files with 216 additions and 80 deletions

View File

@@ -0,0 +1,10 @@
import LoginForm from '@/components/LoginForm';
import React, { useState } from 'react'
export default function LoginPage() {
return (
<div>
<LoginForm />
</div>
)
}