
- Moved source routes under `/listen` and required user to access - Fixed player color - Fixed page title - Updated favicon
17 lines
664 B
TypeScript
17 lines
664 B
TypeScript
export default function Index() {
|
|
return (
|
|
<div className="hero bg-base-200">
|
|
<div className="hero-content text-center">
|
|
<div className="max-w-md">
|
|
<h1 className="text-5xl font-bold">Hello there</h1>
|
|
<p className="py-6">Provident cupiditate voluptatem et in. Quaerat fugiat ut assumenda excepturi
|
|
exercitationem quasi. In deleniti eaque aut repudiandae et a id nisi.</p>
|
|
<button className="btn btn-primary">
|
|
Get Started
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|