8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
export default function Home() {
|
|
return (
|
|
<div className="p-5">
|
|
<p className="text-3xl font-bold text-center mb-10">Linkwarden</p>
|
|
</div>
|
|
);
|
|
}
|