Skip to content

Commit 1c249a4

Browse files
committed
Removes v-if='false' blocks
1 parent 3dd1ade commit 1c249a4

File tree

6 files changed

+0
-53
lines changed

6 files changed

+0
-53
lines changed

components/section/AboutMe.vue

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,6 @@
11
<template>
22
<section class="">
33
<div class="lg:text-normal space-y-4 text-justify text-white sm:text-base">
4-
<template v-if="false">
5-
<div>
6-
I am a
7-
<span class="inline-block w-48">
8-
<HeadlessTransitionRoot
9-
as="template"
10-
appear
11-
:show="show"
12-
enter="transition transform duration-300 ease-out"
13-
enter-from="translate-y-2 opacity-0"
14-
enter-to="translate-x-0 opacity-100"
15-
leave="transition transform duration-300 ease-in"
16-
leave-from="opacity-100"
17-
leave-to="-translate-y-2 opacity-0"
18-
>
19-
<div
20-
class="w-48 bg-white px-2 text-center font-extrabold tracking-wide text-black shadow-xl"
21-
>
22-
{{ occupation }}
23-
</div>
24-
</HeadlessTransitionRoot>
25-
</span>
26-
</div>
27-
</template>
284
<div>
295
I help educate data engineers while building the future of data
306
orchestration at

components/section/BlogPosts.vue

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,6 @@ const props = defineProps({
88
<template>
99
<section class="bg-gradient-to-b from-background to-transparent py-2">
1010
<div class="container mx-auto space-y-4">
11-
<template v-if="false">
12-
<NuxtLink
13-
to="/articles"
14-
class="font-milk text-xl text-white hover:underline hover:decoration-orange-500 hover:decoration-2"
15-
>
16-
Blog Posts
17-
</NuxtLink>
18-
</template>
1911

2012
<div class="mb-4 grid grid-cols-1 gap-4 md:grid-cols-2">
2113
<div v-for="(article, ix) of articles" :key="ix">

components/section/Playground.vue

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,6 @@ const filtered_links = computed(() => {
101101
<template>
102102
<section class="bg-gradient-to-b from-transparent to-background text-white">
103103
<div class="container mx-auto space-y-4 py-8 text-white">
104-
<template v-if="false">
105-
<NuxtLink
106-
to="/playground"
107-
class="font-milk text-2xl text-white underline decoration-orange-500 decoration-2"
108-
>
109-
Experiments
110-
</NuxtLink>
111-
</template>
112104

113105
<div class="mb-4 grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3">
114106
<nuxt-link

pages/articles/index.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,6 @@ function toggleCategory(cat) {
8787

8888
<template>
8989
<section class="container mx-auto font-mono text-white">
90-
<template v-if="false">
91-
<h1 class="my-6 text-2xl font-extrabold">Blog</h1>
92-
</template>
9390
<div class="grid grid-cols-4 gap-4">
9491
<div class="col-span-4 lg:col-span-3">
9592
<div class="grid grid-cols-10 gap-y-4 lg:gap-y-6">

pages/index.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,7 @@ const data = await queryCollection("content")
77

88
<template>
99
<div>
10-
<template v-if="false">
11-
<SectionAboutMe />
12-
</template>
1310
<div class="bg-emerald-950 bg-[url('/images/noise.svg')]">
14-
<template v-if="false">
15-
<SectionInterests />
16-
</template>
1711
<SectionBlogPosts :articles="data" :show_dates="true" />
1812
<SectionPlayground :limit="9" showImages linkToPlayground />
1913
</div>

pages/playground/matrix.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,6 @@
146146
</div>
147147
</div>
148148

149-
<!-- Debug -->
150-
<div v-if="false" class="border border-gray-400 p-2">
151-
{{ step }}
152-
</div>
153149
</div>
154150
</template>
155151

0 commit comments

Comments
 (0)