Skip to content

Commit 110162c

Browse files
committed
🔨 fix logo
1 parent 9d30441 commit 110162c

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,13 @@ jobs:
2727
- name: Checkout
2828
uses: actions/checkout@v4
2929
with:
30-
lfs: true
30+
lfs: true
3131

3232
- name: Setup Node
3333
uses: actions/setup-node@v4
34-
with:
35-
node-version: "20"
3634

3735
- name: Setup pnpm
3836
uses: pnpm/action-setup@v2
39-
with:
40-
version: 8
4137

4238
- name: Install dependencies
4339
run: pnpm install

src/app/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,31 +27,31 @@ const projects = [
2727
description: "AI Autonomous Coding Assistant. A powerful tool that helps developers automate coding tasks and improve productivity.",
2828
tags: ["AI", "TypeScript", "LLM", "VSCode", "CLI"],
2929
link: "https://github.com/TabbyML/pochi",
30-
image: "images/pochi.png",
30+
image: "/images/pochi.png",
3131
demo: ""
3232
},
3333
{
3434
title: "Tabby",
3535
description: "Self Hosted AI Coding Assistant. Intelligent code completions directly in your editor, running entirely on your own infrastructure.",
3636
tags: ["Rust", "AI", "Self-hosted", "VSCode", "CLI"],
3737
link: "https://github.com/TabbyML/tabby",
38-
image: "images/tabby.png",
38+
image: "/images/tabby.png",
3939
demo: ""
4040
},
4141
{
4242
title: "lsd",
4343
description: "A Next Generation UNIX ls Alternative. Modern replacement for ls command with colorful output, icons, and various display options.",
4444
tags: ["Rust", "CLI", "Unix"],
4545
link: "https://github.com/lsd-rs/lsd",
46-
image: "images/lsd.png",
46+
image: "/images/lsd.png",
4747
demo: ""
4848
},
4949
{
5050
title: "Kubernetes Scheduler Plugins",
5151
description: "Advanced scheduling features for Kubernetes. Framework to enable developers to write custom scheduling plugins.",
5252
tags: ["Go", "Kubernetes", "Cloud Native"],
5353
link: "https://github.com/kubernetes-sigs/scheduler-plugins",
54-
image: "images/scheduler-plugins.svg",
54+
image: "/images/scheduler-plugins.svg",
5555
demo: ""
5656
}
5757
];
@@ -93,7 +93,7 @@ export default function Home() {
9393
className="mb-16 relative w-64 h-64 mx-auto"
9494
>
9595
<Image
96-
src="images/logo.png"
96+
src="/images/logo.png"
9797
alt="Logo"
9898
fill
9999
className="object-cover rounded-full border-4 border-background shadow-2xl"

0 commit comments

Comments
 (0)