starting point and readme

This commit is contained in:
Toastie 2024-04-17 00:37:16 +12:00
parent 5eaf1c357a
commit 8616c33bf1
Signed by: toastie_t0ast
GPG key ID: 27F3B6855AFD40A4
2 changed files with 14 additions and 56 deletions

View file

@ -1,29 +1,15 @@
# Create T3 App # Dragons-site
This is a [T3 Stack](https://create.t3.gg/) project bootstrapped with `create-t3-app`. ## TODO
## What's next? How do I make an app with this? - [ ] Make it deploy (vercel)
- [ ] Scaffold basic ui with mock data
We try to keep this project as simple as possible, so you can start with just the scaffolding we set up for you, and add additional things later when they become necessary. - [ ] Actually set up a database (vercel postgres)
- [ ] Attach database to UI
If you are not familiar with the different technologies used in this project, please refer to the respective docs. If you still are in the wind, please join our [Discord](https://t3.gg/discord) and ask for help. - [ ] Add authentication (w/ clerk)
- [ ] Add image upload
- [Next.js](https://nextjs.org) - [ ] Error management (w/ Sentry)
- [NextAuth.js](https://next-auth.js.org) - [ ] Routing/image page (parallel route)
- [Prisma](https://prisma.io) - [ ] Delete button (w/ Server Actions)
- [Drizzle](https://orm.drizzle.team) - [ ] Analytics (posthog)
- [Tailwind CSS](https://tailwindcss.com) - [ ] Ratelimiting (upstash)
- [tRPC](https://trpc.io)
## Learn More
To learn more about the [T3 Stack](https://create.t3.gg/), take a look at the following resources:
- [Documentation](https://create.t3.gg/)
- [Learn the T3 Stack](https://create.t3.gg/en/faq#what-learning-resources-are-currently-available) — Check out these awesome tutorials
You can check out the [create-t3-app GitHub repository](https://github.com/t3-oss/create-t3-app) — your feedback and contributions are welcome!
## How do I deploy this?
Follow our deployment guides for [Vercel](https://create.t3.gg/en/deployment/vercel), [Netlify](https://create.t3.gg/en/deployment/netlify) and [Docker](https://create.t3.gg/en/deployment/docker) for more information.

View file

@ -3,35 +3,7 @@ import Link from "next/link";
export default function HomePage() { export default function HomePage() {
return ( return (
<main className="flex min-h-screen flex-col items-center justify-center bg-gradient-to-b from-[#2e026d] to-[#15162c] text-white"> <main className="flex min-h-screen flex-col items-center justify-center bg-gradient-to-b from-[#2e026d] to-[#15162c] text-white">
<div className="container flex flex-col items-center justify-center gap-12 px-4 py-16 "> Hello (site in progress)
<h1 className="text-5xl font-extrabold tracking-tight text-white sm:text-[5rem]">
Create <span className="text-[hsl(280,100%,70%)]">T3</span> App
</h1>
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 md:gap-8">
<Link
className="flex max-w-xs flex-col gap-4 rounded-xl bg-white/10 p-4 text-white hover:bg-white/20"
href="https://create.t3.gg/en/usage/first-steps"
target="_blank"
>
<h3 className="text-2xl font-bold">First Steps </h3>
<div className="text-lg">
Just the basics - Everything you need to know to set up your
database and authentication.
</div>
</Link>
<Link
className="flex max-w-xs flex-col gap-4 rounded-xl bg-white/10 p-4 text-white hover:bg-white/20"
href="https://create.t3.gg/en/introduction"
target="_blank"
>
<h3 className="text-2xl font-bold">Documentation </h3>
<div className="text-lg">
Learn more about Create T3 App, the libraries it uses, and how to
deploy it.
</div>
</Link>
</div>
</div>
</main> </main>
); );
} }