-
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.
- Loading branch information
Showing
7 changed files
with
60 additions
and
0 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.
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<script setup lang="ts"> | ||
</script> | ||
|
||
<template> | ||
<footer | ||
class="relative bg-footer pt-72" | ||
style="width: 100%; height: 910px" | ||
> | ||
<div class="flex flex-col items-center justify-center space-y-10"> | ||
<img src="../../assets/logo_white.svg" alt="logo" style="width: 105px; height: 105px" /> | ||
<p class="text-center text-primary text-tiny mt-4 body-large">Stay Connected</p> | ||
<div class="flex flex-row space-x-7"> | ||
<a href="https://www.facebook.com/" target="_blank"> | ||
<img src="../../assets/X.svg" alt="facebook" style="width: 36px; height: 36px" /> | ||
</a> | ||
<a href="https://www.instagram.com/" target="_blank"> | ||
<img src="../../assets/Telegram.svg" alt="instagram" style="width: 36px; height: 36px" /> | ||
</a> | ||
<a href="https://www.linkedin.com/" target="_blank"> | ||
<img src="../../assets/ALEPH.IM.svg" alt="linkedin" style="width: 36px; height: 36px" /> | ||
</a> | ||
</div> | ||
<p class="text-center text-neutral-300 text-tiny mt-2 body-large"> | ||
Be part of a pioneering community valuing individual privacy and autonomy<br/> | ||
Join a vibrant community of AI enthusiasts,developers, and innovators who<br/> | ||
share a common commitment to privacy and decentralization. Collaborate,<br/> | ||
share insights, and contribute to the continuous evolution of Libertai's AI<br/> | ||
ecosystem, shaping the future of decentralized intelligence. | ||
</p> | ||
</div> | ||
</footer> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
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,8 @@ | ||
<template> | ||
<p>Hello world!</p> | ||
<Footer /> | ||
</template>; | ||
|
||
<script setup lang="ts"> | ||
import Footer from "../components/Home/FooterSection.vue"; | ||
</script> |
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