9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
|
|
export default function ProjectsPage() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1 className="text-2xl font-bold mb-4">Projects</h1>
|
||
|
|
<p className="text-on-surface-variant">Tracked projects will appear here.</p>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|