Skip to content

Commit

Permalink
chore: add links
Browse files Browse the repository at this point in the history
  • Loading branch information
InvalidJoker committed Apr 28, 2024
1 parent 1989501 commit 4e88ae9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
3 changes: 1 addition & 2 deletions layouts/audio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
<script setup lang="ts">
const options = [
{ text: 'Home', link: '/' },
{ text: 'Settings', link: '/audio/settings' },
{ text: 'Audio', link: '/audio' },
{ text: 'Video', link: '/video' },
{ text: 'About', link: '/about' },
]
</script>
2 changes: 0 additions & 2 deletions layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,5 @@
const options = [
{ text: 'Home', link: '/' },
{ text: 'Audio', link: '/audio' },
{ text: 'Video', link: '/video' },
{ text: 'About', link: '/about' },
]
</script>
15 changes: 11 additions & 4 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,17 @@
<h1 class="text-3xl font-bold mb-4 mt-5">Welcome to BlockVentureMC</h1>
<p class="text-lg">BlockVenture is a Test Project lol :)</p>

<NuxtLink to="https://discord.gg/tAdf2saYup" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-5 inline-block">
<img src="/discord.svg" alt="Discord" class="w-6 h-6 inline-block mr-2" />
Join our Discord
</NuxtLink>
<div class="flex mt-5">
<NuxtLink to="/audio" class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded inline-block">
<Headphones class="w-6 h-6 inline-block mr-2" />
Audio Server
</NuxtLink>
<NuxtLink to="https://discord.gg/tAdf2saYup" class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded inline-block ml-4">
<img src="/discord.svg" alt="Video" class="w-6 h-6 inline-block mr-2" />
Discord
</NuxtLink>
</div>
</template>
<script setup lang="ts">
import { Headphones } from 'lucide-vue-next'
</script>

0 comments on commit 4e88ae9

Please sign in to comment.