Skip to content

Commit

Permalink
Add Spark Memos
Browse files Browse the repository at this point in the history
  • Loading branch information
noobnooc committed Apr 26, 2024
1 parent 6fcc72e commit f9bffff
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/[lang]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ export default async function Home({
)}
link={work.link}
>
<div className="flex gap-2 sm:gap-4">
<div className="flex items-center gap-2 sm:gap-4">
<Image
className="h-10 w-10 sm:h-20 sm:w-20 rounded-xl"
className="h-10 w-10 sm:h-16 sm:w-16 rounded-2xl"
src={work.image!}
alt={dictionary.labels.icon(work.name)}
/>
Expand Down
2 changes: 1 addition & 1 deletion app/[lang]/works/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default async function WorksPage({
>
{work.image ? (
<Image
className="h-14 w-14 rounded-lg"
className="h-14 w-14 rounded-xl"
src={work.image}
alt={dictionary.labels.icon(work.name)}
/>
Expand Down
13 changes: 11 additions & 2 deletions dictionaries/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ import lofyee from "../public/lofyee.png";
import subnooc from "../public/subnooc.png";
import quwu from "../public/quwu.png";
import youminco from "../public/youminco.png";
import SparkMemosLogo from '../public/sparkmemos.webp';

const dictionary = {
meta: {
baseUrl: "https://nooc.me",
websiteName: "Nooc's Yard",
websiteName: "Nooc the Noob",
motto: "A noob named Nooc.",
bio: `
A person.
Expand Down Expand Up @@ -223,6 +224,14 @@ A fan of Serverless.
},
],
works: [
{
name: "Spark Memos",
summary: "A simple short-note-taking app.",
image: SparkMemosLogo,
link: "https://sparkmemos.com",
color: "orange",
primary: true,
},
{
name: "YouminCO",
summary: "A digital nomad community in Chinese.",
Expand All @@ -237,7 +246,7 @@ A fan of Serverless.
image: AssisChat,
link: "https://assischat.com",
color: "green",
primary: true,
primary: false,
},
{
name: "Lofyee",
Expand Down
11 changes: 10 additions & 1 deletion dictionaries/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import lofyee from "../public/lofyee.png";
import subnooc from "../public/subnooc.png";
import quwu from "../public/quwu.png";
import youminco from "../public/youminco.png";
import SparkMemosLogo from '../public/sparkmemos.webp';

const dictionary = {
meta: {
Expand Down Expand Up @@ -218,6 +219,14 @@ Serverless 爱好者。
},
],
works: [
{
name: "星火记",
summary: "一个简洁的短笔记应用",
image: SparkMemosLogo,
link: "https://apps.apple.com/cn/app/spark-memos-inspiration/id6480926767?platform=ipad",
color: "orange",
primary: true,
},
{
name: "游民CO",
summary: "数字游民资讯网站",
Expand All @@ -232,7 +241,7 @@ Serverless 爱好者。
image: AssisChat,
link: "https://assischat.com",
color: "green",
primary: true,
primary: false,
},
{
name: "Lofyee",
Expand Down
Binary file added public/sparkmemos.webp
Binary file not shown.

0 comments on commit f9bffff

Please sign in to comment.