feat(create-turbo): create kitchen-sink
This commit is contained in:
commit
4625c93980
80 changed files with 11572 additions and 0 deletions
19
apps/blog/app/routes/_index.tsx
Normal file
19
apps/blog/app/routes/_index.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { CounterButton } from "@repo/ui/counter-button";
|
||||
import { Link } from "@repo/ui/link";
|
||||
|
||||
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>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue