Skip to content

Commit aa131c1

Browse files
committed
feat: add tetris and pride noodles
1 parent 7ee8f4c commit aa131c1

7 files changed

Lines changed: 1061 additions & 1 deletion

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<template>
2+
<TooltipApp interactive position="top">
3+
<template #content>
4+
<p class="text-sm font-medium text-fg mb-1">
5+
We stand together. Always, everywhere, for all of us
6+
<br />
7+
<strong>Happy Pride Month!</strong>
8+
</p>
9+
</template>
10+
<img
11+
width="400"
12+
class="mb-2 w-80 sm:w-140 max-w-full mx-auto"
13+
src="/extra/pride-2.svg"
14+
:alt="$t('alt_logo')"
15+
/>
16+
</TooltipApp>
17+
</template>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<template>
2+
<TooltipApp interactive position="top">
3+
<template #content>
4+
<p class="text-sm font-medium text-fg mb-1">
5+
Great places are built by diverse people
6+
<br />
7+
<strong>Happy Pride Month!</strong>
8+
</p>
9+
</template>
10+
<img
11+
width="400"
12+
class="mb-2 w-80 sm:w-140 max-w-full mx-auto"
13+
src="/extra/pride-3.png"
14+
:alt="$t('alt_logo')"
15+
/>
16+
</TooltipApp>
17+
</template>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<template>
2+
<TooltipApp interactive position="top">
3+
<template #content>
4+
<p class="text-sm font-medium text-fg mb-1">
5+
<strong>World Tetris Day</strong>. The legendary console turns 42.
6+
<br />
7+
<i>Yes, you matched the blocks correctly, but polyominos are cool too!</i>
8+
</p>
9+
</template>
10+
<img
11+
width="400"
12+
class="mb-10 w-80 sm:w-140 max-w-full mx-auto"
13+
src="/extra/tetris.svg"
14+
:alt="$t('alt_logo')"
15+
/>
16+
</TooltipApp>
17+
</template>

app/components/Noodle/index.ts

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import NoodleKawaiiLogo from './Kawaii/Logo.vue'
22
import NoodlePride1Logo from './Pride1/Logo.vue'
3+
import NoodlePride2Logo from './Pride2/Logo.vue'
4+
import NoodlePride3Logo from './Pride3/Logo.vue'
5+
import NoodleTetrisLogo from './Tetris/Logo.vue'
36

47
export type Noodle = {
58
// Unique identifier for the noodle
@@ -31,7 +34,29 @@ export const ACTIVE_NOODLES: Noodle[] = [
3134
key: 'pride-1',
3235
logo: NoodlePride1Logo,
3336
date: '2026-06-01',
34-
dateTo: '2026-06-30',
37+
dateTo: '2026-06-06',
38+
timezone: 'auto',
39+
},
40+
{
41+
key: 'tetris',
42+
logo: NoodleTetrisLogo,
43+
date: '2026-06-06',
44+
dateTo: '2026-06-08',
45+
timezone: 'auto',
46+
tagline: false,
47+
},
48+
{
49+
key: 'pride-2',
50+
logo: NoodlePride2Logo,
51+
date: '2026-06-08',
52+
dateTo: '2026-06-20',
53+
timezone: 'auto',
54+
},
55+
{
56+
key: 'pride-3',
57+
logo: NoodlePride3Logo,
58+
date: '2026-06-20',
59+
dateTo: '2026-07-01',
3560
timezone: 'auto',
3661
},
3762
]

public/extra/pride-2.svg

Lines changed: 468 additions & 0 deletions
Loading

public/extra/pride-3.png

77.3 KB
Loading

public/extra/tetris.svg

Lines changed: 516 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)