Skip to content

Commit f9bffff

Browse files
committed
Add Spark Memos
1 parent 6fcc72e commit f9bffff

File tree

5 files changed

+24
-6
lines changed

5 files changed

+24
-6
lines changed

app/[lang]/page.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ export default async function Home({
8585
)}
8686
link={work.link}
8787
>
88-
<div className="flex gap-2 sm:gap-4">
88+
<div className="flex items-center gap-2 sm:gap-4">
8989
<Image
90-
className="h-10 w-10 sm:h-20 sm:w-20 rounded-xl"
90+
className="h-10 w-10 sm:h-16 sm:w-16 rounded-2xl"
9191
src={work.image!}
9292
alt={dictionary.labels.icon(work.name)}
9393
/>

app/[lang]/works/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default async function WorksPage({
5252
>
5353
{work.image ? (
5454
<Image
55-
className="h-14 w-14 rounded-lg"
55+
className="h-14 w-14 rounded-xl"
5656
src={work.image}
5757
alt={dictionary.labels.icon(work.name)}
5858
/>

dictionaries/en.ts

+11-2
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ import lofyee from "../public/lofyee.png";
2727
import subnooc from "../public/subnooc.png";
2828
import quwu from "../public/quwu.png";
2929
import youminco from "../public/youminco.png";
30+
import SparkMemosLogo from '../public/sparkmemos.webp';
3031

3132
const dictionary = {
3233
meta: {
3334
baseUrl: "https://nooc.me",
34-
websiteName: "Nooc's Yard",
35+
websiteName: "Nooc the Noob",
3536
motto: "A noob named Nooc.",
3637
bio: `
3738
A person.
@@ -223,6 +224,14 @@ A fan of Serverless.
223224
},
224225
],
225226
works: [
227+
{
228+
name: "Spark Memos",
229+
summary: "A simple short-note-taking app.",
230+
image: SparkMemosLogo,
231+
link: "https://sparkmemos.com",
232+
color: "orange",
233+
primary: true,
234+
},
226235
{
227236
name: "YouminCO",
228237
summary: "A digital nomad community in Chinese.",
@@ -237,7 +246,7 @@ A fan of Serverless.
237246
image: AssisChat,
238247
link: "https://assischat.com",
239248
color: "green",
240-
primary: true,
249+
primary: false,
241250
},
242251
{
243252
name: "Lofyee",

dictionaries/zh.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import lofyee from "../public/lofyee.png";
2727
import subnooc from "../public/subnooc.png";
2828
import quwu from "../public/quwu.png";
2929
import youminco from "../public/youminco.png";
30+
import SparkMemosLogo from '../public/sparkmemos.webp';
3031

3132
const dictionary = {
3233
meta: {
@@ -218,6 +219,14 @@ Serverless 爱好者。
218219
},
219220
],
220221
works: [
222+
{
223+
name: "星火记",
224+
summary: "一个简洁的短笔记应用",
225+
image: SparkMemosLogo,
226+
link: "https://apps.apple.com/cn/app/spark-memos-inspiration/id6480926767?platform=ipad",
227+
color: "orange",
228+
primary: true,
229+
},
221230
{
222231
name: "游民CO",
223232
summary: "数字游民资讯网站",
@@ -232,7 +241,7 @@ Serverless 爱好者。
232241
image: AssisChat,
233242
link: "https://assischat.com",
234243
color: "green",
235-
primary: true,
244+
primary: false,
236245
},
237246
{
238247
name: "Lofyee",

public/sparkmemos.webp

24.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)