mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 06:14:29 +08:00
* Draft begins * Starte SvelteKit * Changes * Consolidate creating a client * Final draft * Update apps/docs/content/guides/auth/server-side/creating-a-client.mdx Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update apps/docs/content/guides/auth/server-side/creating-a-client.mdx Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Rework and simplify * Update apps/docs/content/guides/auth/server-side/creating-a-client.mdx Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update apps/docs/content/guides/auth/server-side/creating-a-client.mdx Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update apps/docs/content/guides/auth/server-side/creating-a-client.mdx Co-authored-by: Charis <26616127+charislam@users.noreply.github.com> * improve spacing * last * Simplify example * Prettier * Fix hono, remove old pages, and add redirects * Remove from menu * Update apps/docs/content/guides/auth/server-side/creating-a-client.mdx Co-authored-by: Charis <26616127+charislam@users.noreply.github.com> * Changes --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Charis <26616127+charislam@users.noreply.github.com> Co-authored-by: Alan Daniel <stylesshjs@gmail.com>
23 lines
595 B
TypeScript
23 lines
595 B
TypeScript
import Link from "next/link";
|
|
import Step from "./Step";
|
|
|
|
export default function SignUpUserSteps() {
|
|
return (
|
|
<ol className="flex flex-col gap-6">
|
|
<Step title="Sign up your first user">
|
|
<p>
|
|
Head over to the{" "}
|
|
<Link
|
|
href="/login"
|
|
className="font-bold hover:underline text-foreground/80"
|
|
>
|
|
Login
|
|
</Link>{" "}
|
|
page and sign up your first user. It's okay if this is just you for
|
|
now. Your awesome idea will have plenty of users later!
|
|
</p>
|
|
</Step>
|
|
</ol>
|
|
);
|
|
}
|