Skip to content

Commit

Permalink
feat: add title to admin new project page
Browse files Browse the repository at this point in the history
  • Loading branch information
KaioFelps committed Dec 25, 2024
1 parent c1c5b7a commit d640c0c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/routes/admin/(authorized)/projetos/novo/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import type { Selected } from "bits-ui";
import { tick } from "svelte";
import type { PageLoadData, PublishResponseType } from "./handlers";
import Title from "$crate/components/title.svelte";
export let form: PublishResponseType;
export let data: PageLoadData;
Expand Down Expand Up @@ -59,6 +60,8 @@
}
</script>

<Title title="Novo Projeto" adminRoute />

<h1 class="mb-12">Novo projeto</h1>

{#if form && form.success}
Expand Down

0 comments on commit d640c0c

Please sign in to comment.