CHORE(merge): merge from develop
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
CI / lint-and-build (push) Has been cancelled

- Initial setup and all features from develop branch
- Includes: auth, deploy, docker, style fixes
- K3S deployment configuration
This commit is contained in:
2026-01-06 17:29:16 +09:00
parent b4ce36ba3b
commit f78454c2a1
159 changed files with 18365 additions and 774 deletions

View File

@@ -0,0 +1,23 @@
import React from "react";
import LoginForm from "@/components/auth/LoginForm";
export default function LoginPage() {
return (
<div className="min-h-screen bg-gray-50 flex items-center justify-center p-6 relative">
<div className="w-full max-w-md relative z-10">
{/* Header Section */}
<div className="text-center mb-8">
<h1 className="text-4xl text-gray-900 mb-2 font-black tracking-tight">
</h1>
<p className="text-gray-600 font-semibold">
</p>
</div>
<LoginForm />
</div>
</div>
);
}