19 lines
474 B
TypeScript
19 lines
474 B
TypeScript
import { CounterButton } from "@repo/ui/counter-button/index.mjs";
|
|
import { Link } from "@repo/ui/link/index.mjs";
|
|
|
|
export default function Index() {
|
|
return (
|
|
<div className="container">
|
|
<h1 className="title">
|
|
Blog <br />
|
|
<span>Kitchen Sink</span>
|
|
</h1>
|
|
<CounterButton />
|
|
<p className="description">
|
|
Built With <Link href="https://turborepo.com">Turborepo</Link>
|
|
{" & "}
|
|
<Link href="https://remix.run/">Remix</Link>
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|