Skip to content

Commit

Permalink
Addresses Review COmments
Browse files Browse the repository at this point in the history
  • Loading branch information
gbdubs committed Jan 20, 2024
1 parent 4be2184 commit 178fb94
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions frontend/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,24 @@ const tt = (s: string) => t(`pages/index.${s}`)
/>
</p>
<p>{{ tt('Section2Paragraph3') }}</p>
<PVButton
v-if="!isAuthenticated"
:label="tt('Sign In')"
icon="pi pi-sign-in"
icon-pos="right"
@click="signIn"
/>
<LinkButton
v-else
:label="tt('Get Started')"
icon="pi pi-arrow-right"
icon-pos="right"
to="/upload"
/>
<div class="flex justify-content-center mt-2">
<PVButton
v-if="!isAuthenticated"
:label="tt('Sign In')"
icon="pi pi-sign-in"
icon-pos="right"
class="max-w-30rem"
@click="signIn"
/>
<LinkButton
v-else
:label="tt('Get Started')"
icon="pi pi-arrow-right"
icon-pos="right"
class="max-w-30rem"
to="/upload"
/>
</div>
</div>
<div class="flex gap-3 flex-column p-3">
<h2 class="m-0">
Expand Down

0 comments on commit 178fb94

Please sign in to comment.