Skip to content

Commit 895b87b

Browse files
committed
feat: add artemis noodle
1 parent 4061599 commit 895b87b

File tree

6 files changed

+56
-1
lines changed

6 files changed

+56
-1
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<template>
2+
<div>
3+
<ColorSchemeImg
4+
width="400"
5+
class="mb-8 motion-safe:animate-fade-in motion-safe:animate-scale-in w-80 sm:w-100"
6+
dark-src="/extra/npmx-dark-artemis.svg"
7+
light-src="/extra/npmx-light-artemis.svg"
8+
/>
9+
<ColorSchemeImg
10+
width="1440"
11+
height="455"
12+
class="absolute bottom-0 inset-is-0 w-full h-auto mix-blend-lighten light:mix-blend-darken motion-safe:animate-fade-in"
13+
dark-src="/extra/moon-dark.png"
14+
light-src="/extra/moon-light.png"
15+
/>
16+
</div>
17+
</template>

app/components/Noodle/index.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import NoodleKawaiiLogo from './Kawaii/Logo.vue'
2+
import NoodleArtemisLogo from './Artemis/Logo.vue'
23
import NoodleTkawaiiLogo from './Tkawaii/Logo.vue'
34

45
export type Noodle = {
@@ -35,4 +36,12 @@ export const PERMANENT_NOODLES: Noodle[] = [
3536
]
3637

3738
// Active noodles - shown based on date and timezone
38-
export const ACTIVE_NOODLES: Noodle[] = []
39+
export const ACTIVE_NOODLES: Noodle[] = [
40+
{
41+
key: 'artemis',
42+
logo: NoodleArtemisLogo,
43+
date: '2026-04-08T12:00:00UTC',
44+
timezone: 'America/Los_Angeles',
45+
tagline: true,
46+
},
47+
]

public/extra/moon-dark.png

553 KB
Loading

public/extra/moon-light.png

567 KB
Loading

public/extra/npmx-dark-artemis.svg

Lines changed: 20 additions & 0 deletions
Loading
Lines changed: 9 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)