style(root): add dark mode support to root portal page
This commit is contained in:
parent
8cd54908d0
commit
25fd894751
1 changed files with 6 additions and 6 deletions
12
app/page.tsx
12
app/page.tsx
|
|
@ -2,19 +2,19 @@ import Link from "next/link";
|
|||
|
||||
export default function Home() {
|
||||
return (
|
||||
<main className="flex min-h-screen flex-col items-center justify-center bg-slate-50 p-6">
|
||||
<div className="w-full max-w-md bg-white p-8 rounded-lg shadow-sm border border-slate-200 text-center">
|
||||
<h1 className="text-2xl font-bold text-slate-900 mb-2">
|
||||
<main className="flex min-h-screen flex-col items-center justify-center bg-slate-50 dark:bg-slate-950 p-6 transition-colors duration-200">
|
||||
<div className="w-full max-w-md bg-white dark:bg-slate-900 p-8 rounded-lg shadow-sm border border-slate-200 dark:border-slate-800 text-center transition-colors duration-200">
|
||||
<h1 className="text-2xl font-bold text-slate-900 dark:text-white mb-2">
|
||||
AI Recruitment Platform
|
||||
</h1>
|
||||
<p className="text-slate-600 mb-6 text-sm">
|
||||
<p className="text-slate-600 dark:text-slate-300 mb-6 text-sm">
|
||||
Welcome to the ATS. Access your workspace below.
|
||||
</p>
|
||||
<Link
|
||||
href="/jobs"
|
||||
className="inline-block w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-4 rounded-md shadow-sm transition-colors text-sm"
|
||||
className="inline-block w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-4 rounded-md shadow-sm transition-colors text-sm cursor-pointer"
|
||||
>
|
||||
Go to Dashboard
|
||||
Go to Workspace
|
||||
</Link>
|
||||
</div>
|
||||
</main>
|
||||
|
|
|
|||
Loading…
Reference in a new issue