Skip to content

Commit 750f426

Browse files
committed
add app constants
1 parent 54c7e65 commit 750f426

1 file changed

Lines changed: 51 additions & 0 deletions

File tree

app/products/constants.ts

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ export const technologies: Record<string, Technology> = {
7373
textColor: "text-yellow-600",
7474
borderColor: "border-yellow-600",
7575
},
76+
nextjs: {
77+
name: "Next.js",
78+
textColor: "text-gray-600",
79+
borderColor: "border-gray-600",
80+
},
7681
python: {
7782
name: "Python",
7883
textColor: "text-blue-600",
@@ -121,6 +126,52 @@ export const technologies: Record<string, Technology> = {
121126
};
122127

123128
export const products: Product[] = [
129+
{
130+
id: "sainara",
131+
title: "Ψナラ",
132+
images: [
133+
{
134+
src: "/image/products/sainara/index.png",
135+
width: 628,
136+
height: 1360,
137+
},
138+
{
139+
src: "/image/products/sainara/rest-map.png",
140+
width: 628,
141+
height: 1360,
142+
},
143+
{
144+
src: "/image/products/sainara/enjoy-map.png",
145+
width: 628,
146+
height: 1360,
147+
},
148+
{
149+
src: "/image/products/sainara/recommend.png",
150+
width: 628,
151+
height: 1360,
152+
},
153+
],
154+
category: ["app"],
155+
technologies: ["nextjs", "typescript"],
156+
description: [
157+
"奈良旅行の最後を気持ちよく締めくくるための地図アプリです。" +
158+
"旅行の終わりに生じる中途半端な空き時間と乗り遅れへの不安を解消するために開発しました。" +
159+
"心理学の「ピーク・エンドの法則」を利用し、旅の最後の印象を良くすることで、「また奈良に来たい」と思ってもらうことを目指しています。",
160+
"ことてくハッカソン2025にて開発し、アーバンデータチャレンジ(UDC)特別賞を受賞しました。"
161+
],
162+
links: [
163+
{
164+
name: "Website",
165+
url: "https://sai-nara.vercel.app/",
166+
backgroundColor: "bg-blue-500",
167+
},
168+
{
169+
name: "GitHub",
170+
url: "https://github.com/Eztas/SaiNara",
171+
backgroundColor: "bg-gray-500",
172+
}
173+
]
174+
},
124175
{
125176
id: "kaitabi20s-polling-bot",
126177
title: "界タビ20s空き通知ボット",

0 commit comments

Comments
 (0)