We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 148b9b8 commit 975669bCopy full SHA for 975669b
1 file changed
apps/web/app/badge/page.tsx
@@ -1,10 +1,14 @@
1
+import Link from 'next/link'
2
+
3
import { Button } from '@tech-stack/ui/components/button'
4
5
export default function Page() {
6
return (
7
<div className="flex flex-1 flex-col items-center justify-center gap-4">
8
<h1 className="font-bold text-2xl">Work in progress</h1>
- <Button size="sm">Home</Button>
9
+ <Button size="sm" asChild>
10
+ <Link href="/">Home</Link>
11
+ </Button>
12
</div>
13
)
14
}
0 commit comments