2023-10-07 11:43:53 -07:00
|
|
|
import { Button } from "@/components/ui/button";
|
2023-09-04 19:53:50 -07:00
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
2023-10-07 11:43:53 -07:00
|
|
|
<div>
|
|
|
|
<p className='text-3xl font-bold text-indigo-500'>
|
|
|
|
Hello Discord Clone
|
|
|
|
</p>
|
|
|
|
<Button>
|
|
|
|
Click Me
|
|
|
|
</Button>
|
|
|
|
</div>
|
2023-09-04 19:53:50 -07:00
|
|
|
)
|
|
|
|
}
|