-
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.
Took 36 minutes
- Loading branch information
Showing
3 changed files
with
35 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<script lang="ts" setup> | ||
import LButton from "../../components/LButton.vue"; | ||
</script> | ||
|
||
<template> | ||
<div class="flex py-60 pl-16 image-background"> | ||
<div class="flex flex-col gap-6 py-9 px-6 max-w-4xl text-neutral-100"> | ||
<h1>Discover the Freedom of Decentralized AI</h1> | ||
<p class="body-small"> | ||
Experience the privacy of LibertAI's decentralized AI platform - chat freely, without data logging. Explore | ||
various Chat-GPT like open-source models, like Llama 3 70b, for free. Create personalized AI assistants for | ||
enhanced productivity.<br> | ||
<br> | ||
Your AI journey, your privacy! | ||
</p> | ||
<a href="https://chat.libertai.io"> | ||
<l-button class="w-fit" light text="TRY FOR FREE" /> | ||
</a> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
div.image-background { | ||
background-image: url("../../assets/hero.png"); | ||
background-size: cover; | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
} | ||
</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,7 @@ | ||
<script lang="ts" setup> | ||
import Hero from "./HeroSection.vue"; | ||
</script> | ||
|
||
<template> | ||
<p>Hello world!</p> | ||
<Hero /> | ||
</template>; |