Skip to content

Commit 522094e

Browse files
committed
logo change
1 parent cd3bf5f commit 522094e

4 files changed

Lines changed: 2429 additions & 9 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,22 @@ jobs:
1616
- name: Checkout code
1717
uses: actions/checkout@v4
1818

19+
- name: Setup pnpm
20+
uses: pnpm/action-setup@v2
21+
with:
22+
version: 8
23+
1924
- name: Setup Node.js
2025
uses: actions/setup-node@v3
2126
with:
2227
node-version: '18'
23-
cache: 'npm'
24-
cache-dependency-path: 'package-lock.json'
28+
cache: 'pnpm'
2529

2630
- name: Install Dependencies
27-
run: npm ci
31+
run: pnpm install
2832

2933
- name: Build
30-
run: npm run build
34+
run: pnpm build
3135

3236
- name: Deploy to Cloudflare Pages
3337
uses: cloudflare/pages-action@v1

app/layout.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,16 @@ export const metadata: Metadata = {
5353
"TypeScript Developer",
5454
],
5555
icons: {
56-
icon: "/logo1.jpg",
57-
shortcut: "/logo1.jpg",
58-
apple: "/logo1.jpg",
56+
icon: "/logo2.webp",
57+
shortcut: "/logo2.webp",
58+
apple: "/logo2.webp",
5959
},
6060
openGraph: {
6161
title: "William | Portfolio",
6262
description: "Full Stack Developer, Competitive Programmer, and ML Enthusiast",
6363
images: [
6464
{
65-
url: "https://codevoid.site/logo1.jpg",
65+
url: "https://codevoid.site/logo2.webp",
6666
width: 1200,
6767
height: 630,
6868
alt: "William Portfolio",
@@ -74,7 +74,7 @@ export const metadata: Metadata = {
7474
title: "William Keri | Portfolio",
7575
description: "Full Stack Developer, Competitive Programmer, and ML Enthusiast",
7676
creator: "@code__void",
77-
images: ["https://codevoid.site/logo1.jpg"],
77+
images: ["https://codevoid.site/logo2.webp"],
7878
},
7979
}
8080

0 commit comments

Comments
 (0)