File tree Expand file tree Collapse file tree 6 files changed +0
-53
lines changed Expand file tree Collapse file tree 6 files changed +0
-53
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<section class =" " >
3
3
<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 >
28
4
<div >
29
5
I help educate data engineers while building the future of data
30
6
orchestration at
Original file line number Diff line number Diff line change @@ -8,14 +8,6 @@ const props = defineProps({
8
8
<template >
9
9
<section class =" bg-gradient-to-b from-background to-transparent py-2" >
10
10
<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 >
19
11
20
12
<div class =" mb-4 grid grid-cols-1 gap-4 md:grid-cols-2" >
21
13
<div v-for =" (article, ix) of articles" :key =" ix" >
Original file line number Diff line number Diff line change @@ -101,14 +101,6 @@ const filtered_links = computed(() => {
101
101
<template >
102
102
<section class =" bg-gradient-to-b from-transparent to-background text-white" >
103
103
<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 >
112
104
113
105
<div class =" mb-4 grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3" >
114
106
<nuxt-link
Original file line number Diff line number Diff line change @@ -87,9 +87,6 @@ function toggleCategory(cat) {
87
87
88
88
<template >
89
89
<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 >
93
90
<div class =" grid grid-cols-4 gap-4" >
94
91
<div class =" col-span-4 lg:col-span-3" >
95
92
<div class =" grid grid-cols-10 gap-y-4 lg:gap-y-6" >
Original file line number Diff line number Diff line change @@ -7,13 +7,7 @@ const data = await queryCollection("content")
7
7
8
8
<template >
9
9
<div >
10
- <template v-if =" false " >
11
- <SectionAboutMe />
12
- </template >
13
10
<div class =" bg-emerald-950 bg-[url('/images/noise.svg')]" >
14
- <template v-if =" false " >
15
- <SectionInterests />
16
- </template >
17
11
<SectionBlogPosts :articles =" data" :show_dates =" true" />
18
12
<SectionPlayground :limit =" 9" showImages linkToPlayground />
19
13
</div >
Original file line number Diff line number Diff line change 146
146
</div >
147
147
</div >
148
148
149
- <!-- Debug -->
150
- <div v-if =" false" class =" border border-gray-400 p-2" >
151
- {{ step }}
152
- </div >
153
149
</div >
154
150
</template >
155
151
You can’t perform that action at this time.
0 commit comments