first commit
This commit is contained in:
14
frontend/app/page.tsx
Normal file
14
frontend/app/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import Link from "next/link";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="max-w-xl mx-auto pt-20">
|
||||
<div className="text-3xl font-bold">mt-traffic</div>
|
||||
<p className="mt-2 text-zinc-300">Live monitoring MikroTik z dashboardami.</p>
|
||||
<div className="mt-6 flex gap-3">
|
||||
<Link href="/login" className="px-4 py-2 rounded-lg bg-zinc-100 text-zinc-900">Login</Link>
|
||||
<Link href="/dashboards" className="px-4 py-2 rounded-lg border border-zinc-700">Dashboards</Link>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user