Skip to content

Commit

Permalink
refacto: Assets folder organization
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed Jun 30, 2024
1 parent fd2c8f6 commit 151885d
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 20 deletions.
Binary file removed src/assets/Image.png
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
11 changes: 11 additions & 0 deletions src/assets/icons/message.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 0 additions & 10 deletions src/assets/message.svg

This file was deleted.

File renamed without changes
6 changes: 3 additions & 3 deletions src/components/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<div @mouseenter="showApps = true" @mouseleave="showApps = false">
<div class="flex">
<span class="mr-1.5 cursor-pointer">Apps</span>
<img alt="Chevron down" src="../assets/chevron_down.svg" />
<img alt="Chevron down" src="../assets/icons/chevron_down.svg" />
</div>

<div class="absolute pt-2">
Expand Down Expand Up @@ -66,7 +66,7 @@
>
<div class="flex gap-2">
<p class="body-small max-lg:body-tiny">Chat APP</p>
<img alt="Message" src="../assets/message.svg" />
<img alt="Message" src="../assets/icons/message.svg" />
</div>
</button>
</a>
Expand All @@ -80,7 +80,7 @@
<div class="body-default focus:bg-neutral-200">
<button class="flex items-center px-8 py-4" @click="showApps = !showApps">
<span class="mr-1.5 cursor-pointer">Apps</span>
<img alt="Chevron up" src="../assets/chevron_down.svg" />
<img alt="Chevron up" src="../assets/icons/chevron_down.svg" />
</button>
<div v-show="showApps" class="flex flex-col border-y">
<a href="https://chat.libertai.io" target="_blank">
Expand Down
10 changes: 5 additions & 5 deletions src/pages/Home/AICustomizationSection.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<script lang="ts" setup>
import LButton from "../../components/LButton.vue";
import AilonMusk from "../../assets/AilonMusk.png";
import Therapist from "../../assets/Therapist.png";
import VirtualBoyfriend from "../../assets/VirtualBoyfriend.png";
import VirtualGirlfriend from "../../assets/VirtualGirlfriend.png";
import Tromp from "../../assets/Tromp.png";
import AilonMusk from "../../assets/home/personas/AilonMusk.png";
import Therapist from "../../assets/home/personas/Therapist.png";
import VirtualBoyfriend from "../../assets/home/personas/VirtualBoyfriend.png";
import VirtualGirlfriend from "../../assets/home/personas/VirtualGirlfriend.png";
import Tromp from "../../assets/home/personas/Tromp.png";
import { onMounted, ref, watch } from "vue";
const AIs = [
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Tokenomics/TokenomicsHeroSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
participation, innovation, and growth within the LibertAI platform.
</p>
</div>
<img alt="Earn" class="z-10 m-auto max-lg:hidden" src="../../assets/image 32.png" />
<img alt="Earn" class="z-10 m-auto max-lg:hidden" src="../../assets/tokenomics/hero.png" />
</div>
</section>
</template>

<style scoped>
div.image-background {
background-image: url("../../assets/image 32.png");
background-image: url("../../assets/tokenomics/hero.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
Expand Down

0 comments on commit 151885d

Please sign in to comment.