server-dash/app/page.tsx
2026-03-25 22:23:18 -07:00

8 lines
341 B
TypeScript

export default async function Home() {
return (
<div className="flex flex-col w-full pt-[100px] md:px-[100px] px-[10px]">
<h1 className="text-slate-600 text-[24pt]">Jack&apos;s Server Dashboard</h1>
<div className="text-blue-400 text-[20pt]"><a href="https://syncthing.jackmechem.dev">Syncthing</a></div>
</div>
);
}