8 lines
341 B
TypeScript
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's Server Dashboard</h1>
|
|
<div className="text-blue-400 text-[20pt]"><a href="https://syncthing.jackmechem.dev">Syncthing</a></div>
|
|
</div>
|
|
);
|
|
}
|