This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[update] included email and beveldrive logo for contact at footer.
- Loading branch information
Showing
2 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
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,3 +1,6 @@ | ||
|
||
import { RouterLink } from 'vue-router'; | ||
import { RouterLink } from 'vue-router'; | ||
<template> | ||
<footer class="fixed bottom-0 bg-[#00050e] pt-8 pb-6 mx-auto px-auto align-middle w-full"> | ||
<div class="container mx-auto px-4"> | ||
|
@@ -87,14 +90,22 @@ | |
</div> | ||
<hr class="my-6 border-cyan-300"> | ||
<div class="flex flex-wrap items-center md:justify-between justify-center"> | ||
<div class="w-full md:w-4/12 px-4 mx-auto text-center"> | ||
<div class="w-full md:w-5/12 px-4 mx-auto text-center"> | ||
<div class="text-sm text-white font-semibold py-1"> | ||
Copyright © <span id="get-current-year">2024</span> | ||
<a href="https://twitch.tv/shiandegames" class="text-indigo-500 hover:text-indigo-800"> | ||
<span class="text-indigo-600"> | ||
ShiandeGames | ||
</a>. Todos os direitos reservados. | ||
</span> e | ||
<span class="text-rose-600"> | ||
Bevel Drive</span>. | ||
Todos os direitos reservados. | ||
</div> | ||
</div> | ||
<div> | ||
<a href="mailto://[email protected]"> | ||
<img src="@/assets/images/Beveldrive_logo.png" alt="Bevel Drive Logo" class="w-10 h-10"> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
|