-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
448 additions
and
65 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,25 +1,3 @@ | ||
<template> | ||
<footer class=" | ||
relative z-50 h-16 w-full -mt-16 px-4 shadow-lg border-t flex justify-between | ||
bg-white dark:bg-gray-700 border-gray-300 dark:border-gray-600 | ||
"> | ||
<ul class="flex justify-center gap-8 w-full"> | ||
<li class=" | ||
flex text-base border-t-4 border-t-transparent transition-all ease-in-out | ||
text-gray-600 dark:text-gray-300 hover:border-t-gray-200 dark:hover:border-t-gray-400 | ||
"> | ||
<router-link class="flex-center min-w-[120px]" :to="{ name: 'privacy' }" target="_blank"> | ||
Privacy | ||
</router-link> | ||
</li> | ||
<li class=" | ||
flex text-base border-t-4 border-t-transparent transition-all ease-in-out | ||
text-gray-600 dark:text-gray-300 hover:border-t-gray-200 dark:hover:border-t-gray-400 | ||
"> | ||
<router-link class="flex-center min-w-[120px]" :to="{ name: 'terms' }" target="_blank"> | ||
Legal | ||
</router-link> | ||
</li> | ||
</ul> | ||
</footer> | ||
<!-- Empty for now! --> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<template> | ||
<section class="bg-gray-700 p-4 lg:p-8 flex flex-col"> | ||
<div class="flex-center mb-16"> | ||
<div class="flex gap-3 items-center"> | ||
<img class="h-8 mr-2 pl-4" src="/appointment_logo.svg" alt="Appointment Logo"/> | ||
<div class="text-lg font-display tracking-[.25em] text-white uppercase"> | ||
Thunderbird Appointment | ||
</div> | ||
</div> | ||
</div> | ||
<div class="flex-center mb-0 mt-auto"> | ||
<ul class="flex justify-center w-full gap-16"> | ||
<li class=" | ||
flex text-base border-t-4 border-t-transparent transition-all ease-in-out | ||
text-gray-300 dark:text-gray-300 | ||
"> | ||
<router-link class="flex-center" :to="{ name: 'privacy' }" target="_blank"> | ||
{{ $t('label.privacy') }} | ||
</router-link> | ||
</li> | ||
<li class=" | ||
flex text-base border-t-4 border-t-transparent transition-all ease-in-out | ||
text-gray-300 dark:text-gray-300 | ||
"> | ||
<router-link class="flex-center" :to="{ name: 'terms' }" target="_blank"> | ||
{{ $t('label.legal') }} | ||
</router-link> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="flex-center mb-0 mt-8 text-gray-300 text-center"> | ||
<p class="md:w-1/2"> | ||
<i18n-t keypath="text.homepage.copywrite"> | ||
<template v-slot:mzlaLink> | ||
<a class="underline underline-offset-2" | ||
href="https://blog.thunderbird.net/2020/01/thunderbirds-new-home/" | ||
> | ||
{{ $t('text.homepage.mzlaLinkText') }} | ||
</a> | ||
</template> | ||
<template v-slot:creativeCommonsLink> | ||
<a class="underline underline-offset-2" | ||
href="https://www.mozilla.org/en-US/foundation/licensing/website-content/" | ||
> | ||
{{ $t('text.homepage.creativeCommonsLinkText') }} | ||
</a> | ||
</template> | ||
</i18n-t> | ||
</p> | ||
</div> | ||
</section> | ||
</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
Oops, something went wrong.