2023-09-14 00:36:16 +08:00
|
|
|
import { Button } from "@/components/ui/button";
|
2023-08-25 21:53:07 +08:00
|
|
|
import Link from "next/link";
|
2023-08-25 12:43:48 +08:00
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
|
2023-08-25 13:14:23 +08:00
|
|
|
return (
|
2023-09-14 00:36:16 +08:00
|
|
|
<div className='flex-1 flex justify-center items-center'>
|
2023-08-25 21:53:07 +08:00
|
|
|
<Link href={'/components'}>
|
2023-09-14 00:36:16 +08:00
|
|
|
<Button>components</Button>
|
2023-08-25 21:53:07 +08:00
|
|
|
</Link>
|
|
|
|
</div>
|
2023-08-25 13:14:23 +08:00
|
|
|
)
|
|
|
|
}
|