We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86db954 commit 7523b1dCopy full SHA for 7523b1d
3 files changed
components/section/Playground.vue
@@ -15,6 +15,12 @@ const props = defineProps({
15
});
16
17
const links = [
18
+ {
19
+ title: "tabs.garden",
20
+ description: "A simple site for guitar tabs",
21
+ link: "/playground/tabs-garden",
22
+ img: "/images/previews/tabs-garden.png",
23
+ },
24
{
25
title: "Conway",
26
description: "Conway's game of life written in vanilla Javascript",
pages/playground/tabs-garden.vue
@@ -0,0 +1,13 @@
1
+<script setup>
2
+definePageMeta({ layout: "light" });
3
+</script>
4
+
5
+<template>
6
+ <main class="flex h-[1024px] justify-center border-2 border-gray-500">
7
+ <iframe
8
+ src="https://tabs.garden"
9
+ width="100%"
10
+ height="100%"
11
+ ></iframe>
12
+ </main>
13
+</template>
public/images/previews/tabs-garden.png
404 KB
0 commit comments