15 lines
262 B
TypeScript
Raw Normal View History

import { Button } from "@/components/ui/button"
2023-09-04 19:53:50 -07:00
export default function Home() {
return (
<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
)
}