radio-station/app/routes/_index.tsx
Luke Bunselmeyer e7464e6299 - UI
- Moved source routes under `/listen` and required user to access
  - Fixed player color
  - Fixed page title
  - Updated favicon
2023-05-07 22:54:00 -04:00

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>
);
}