Skip to content

Commit 89fca14

Browse files
committed
chore: bump version
1 parent 5dd7720 commit 89fca14

File tree

3 files changed

+4
-21
lines changed

3 files changed

+4
-21
lines changed

islands/AnimatedCodeBlock.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { useEffect, useState } from "preact/hooks";
2+
import { Rocket } from "lucide-preact";
23

34
const codeLines = [
45
{ text: "// hello.ts - TypeScript works out of the box", type: "comment" },
@@ -75,8 +76,8 @@ export default function AnimatedCodeBlock() {
7576
<div class="terminal-dot yellow"></div>
7677
<div class="terminal-dot green"></div>
7778
</div>
78-
<h4 class="font-semibold flex items-center gap-2 text-text mt-2">
79-
<span>🚀</span> Your First Program
79+
<h4 class="font-semibold flex items-center gap-2 text-text mt-2 ml-5">
80+
<Rocket size={18} class="inline-block" /> Your First Program
8081
</h4>
8182
</div>
8283

routes/index.tsx

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -636,12 +636,6 @@ export default function Home() {
636636
{/* Feature Examples */}
637637
<div class="grid md:grid-cols-3 gap-6 max-w-6xl mx-auto stagger-children animate-on-scroll">
638638
<div class="bg-mantle rounded-lg border border-surface1 p-6 hover:border-surface2 transition-all hover-lift code-block-enhanced">
639-
<div class="terminal-header mb-4">
640-
<div class="terminal-dot red"></div>
641-
<div class="terminal-dot yellow"></div>
642-
<div class="terminal-dot green"></div>
643-
<span class="text-xs text-subtext1 ml-2">graphics.ts</span>
644-
</div>
645639
<h4 class="text-lg font-semibold mb-3 text-text flex items-center">
646640
<span class="mr-2">
647641
<Image size={16} class="inline-block mr-1" />
@@ -668,12 +662,6 @@ canvas.saveAsPng("gradient.png");`}
668662
</div>
669663

670664
<div class="bg-mantle rounded-lg border border-surface1 p-6 hover:border-surface2 transition-all hover-lift code-block-enhanced float-animation">
671-
<div class="terminal-header mb-4">
672-
<div class="terminal-dot red"></div>
673-
<div class="terminal-dot yellow"></div>
674-
<div class="terminal-dot green"></div>
675-
<span class="text-xs text-subtext1 ml-2">database.ts</span>
676-
</div>
677665
<h4 class="text-lg font-semibold mb-3 text-text flex items-center">
678666
<span class="mr-2">
679667
<Database size={16} class="inline-block mr-1" />
@@ -699,12 +687,6 @@ stmt.run("Alice", "[email protected]");`}
699687
</div>
700688

701689
<div class="bg-mantle rounded-lg border border-surface1 p-6 hover:border-surface2 transition-all hover-lift code-block-enhanced">
702-
<div class="terminal-header mb-4">
703-
<div class="terminal-dot red"></div>
704-
<div class="terminal-dot yellow"></div>
705-
<div class="terminal-dot green"></div>
706-
<span class="text-xs text-subtext1 ml-2">crypto.ts</span>
707-
</div>
708690
<h4 class="text-lg font-semibold mb-3 text-text flex items-center">
709691
<span class="mr-2">
710692
<Lock size={16} class="inline-block mr-1" />

static/sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const CACHE_VERSION = "v24"; // Increment this when you have new features
1+
const CACHE_VERSION = "v25"; // Increment this when you have new features
22
const STATIC_CACHE = `andromeda-static-${CACHE_VERSION}`;
33
const DYNAMIC_CACHE = `andromeda-dynamic-${CACHE_VERSION}`;
44

0 commit comments

Comments
 (0)