-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add creators image upload screen
- Loading branch information
1 parent
fb8af5f
commit 1c0dd03
Showing
6 changed files
with
74 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<template> | ||
<div class="w-full flex-1 p-3"> | ||
<div class="text-zinc-700 font-medium pl-4 py-[10px] text-sm"> | ||
Criação de conteúdo | ||
</div> | ||
<nuxt-link | ||
to="/creators/images" | ||
class="group" | ||
exact-active-class="is-active" | ||
> | ||
<LeftMenuItem | ||
icon="image" | ||
text="Imagens" | ||
class="group-[.is-active]:text-zinc-950 group-[.is-active]:bg-zinc-100" | ||
/> | ||
</nuxt-link> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<template> | ||
<div class="container pt-4"> | ||
<h1 class="text-4xl font-extrabold mb-4">Suas imagens</h1> | ||
<div class="flex items-center gap-4 mb-8"> | ||
<MButton | ||
variant="outline" | ||
text="Fazer upload" | ||
icon-left="cloud-arrow-up" | ||
/> | ||
<div class="space-y-[4px] w-full max-w-[240px] pt-2"> | ||
<div class="rounded-full bg-zinc-200 h-[4px]"> | ||
<div | ||
class="w-full max-w-[60%] h-full rounded-full bg-emerald-500" | ||
></div> | ||
</div> | ||
<div class="flex text-zinc-500 text-sm"> | ||
<div class="flex-1"> | ||
Usado: <span class="text-zinc-950 font-medium">5GB</span> de 10GB | ||
</div> | ||
<div>50%</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="grid grid-cols-[repeat(auto-fill,_minmax(200px,_1fr))] gap-1"> | ||
<div v-for="i in 16" :key="i"> | ||
<div class="aspect-video w-full overflow-hidden"> | ||
<nuxt-img | ||
src="/app/midjourney/backgrounds/login.png" | ||
:quality="85" | ||
format="webp" | ||
width="250" | ||
height="140" | ||
alt="Roadmap" | ||
class="h-full w-full object-cover object-center transition-all group-hover:scale-110" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters