Skip to content

Commit

Permalink
seedの文章増やした
Browse files Browse the repository at this point in the history
  • Loading branch information
nasubi-dev committed Sep 23, 2024
1 parent 33a8c8d commit 4c39070
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 17 deletions.
20 changes: 10 additions & 10 deletions src/assets/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,15 +314,15 @@ export const seedsData: Array<DBSchema<"seeds">> = [
{
seed_id: "1",
created_at: "2024-09-22T00:00:00Z",
description: "屋上庭園のある公共施設が欲しい",
description: "大人も子どもも楽しめる屋上庭園のあるパーク施設が欲しい",
location: { lon: 136.886326, lat: 35.172757 },
sower_id: "1",
category_id: "1",
},
{
seed_id: "2",
created_at: "2024-09-22T00:00:00Z",
description: "静かに読書できる屋外ブックカフェが欲しい",
description: "静かに読書ができて昼食も取れて一日中滞在できるような屋外ブックカフェが欲しい",
location: { lon: 136.886326, lat: 35.172757 },
sower_id: "1",
category_id: "1",
Expand All @@ -338,15 +338,15 @@ export const seedsData: Array<DBSchema<"seeds">> = [
{
seed_id: "4",
created_at: "2024-09-22T00:00:00Z",
description: "公園にハンモックエリアを作ってほしい",
description: "ゆったりできる公園にハンモックエリアを作ってほしい",
location: { lon: 136.886326, lat: 35.172757 },
sower_id: "1",
category_id: "1",
},
{
seed_id: "5",
created_at: "2024-09-22T00:00:00Z",
description: "人工芝の広がる場所がほしい",
description: "地面に寝っ転がれる人工芝の広がる場所がほしい",
location: { lon: 136.886326, lat: 35.172757 },
sower_id: "1",
category_id: "4",
Expand All @@ -362,7 +362,7 @@ export const seedsData: Array<DBSchema<"seeds">> = [
{
seed_id: "8",
created_at: "2024-09-22T00:00:00Z",
description: "新鮮な野菜を使ったレストランが欲しい",
description: "近くの新鮮な野菜を使ったレストランが欲しい",
location: { lon: 136.886326, lat: 35.172757 },
sower_id: "1",
category_id: "3",
Expand All @@ -378,15 +378,15 @@ export const seedsData: Array<DBSchema<"seeds">> = [
{
seed_id: "10",
created_at: "2024-09-22T00:00:00Z",
description: "地元の農産物を使った安くて美味しいレストランが欲しい",
description: "アットホームな雰囲気の地元の農産物を使った安くて美味しいレストランが欲しい",
location: { lon: 136.886326, lat: 35.172757 },
sower_id: "1",
category_id: "3",
},
{
seed_id: "11",
created_at: "2024-09-22T00:00:00Z",
description: "コミュニティスペースを増やしてほしい",
description: "若者から高齢者まで幅広い世代がコミュニティスペースを増やしてほしい",
location: { lon: 136.886326, lat: 35.172757 },
sower_id: "1",
category_id: "2",
Expand Down Expand Up @@ -418,23 +418,23 @@ export const seedsData: Array<DBSchema<"seeds">> = [
{
seed_id: "15",
created_at: "2024-09-22T00:00:00Z",
description: "地元の高齢者が運営する昔ながらの食堂が欲しい",
description: "地元の伝統料理など高齢者が運営する昔ながらの食堂が欲しい",
location: { lon: 136.886326, lat: 35.172757 },
sower_id: "1",
category_id: "4",
},
{
seed_id: "16",
created_at: "2024-09-22T00:00:00Z",
description: "地域の経済を活性化させたい",
description: "地域の経済を学生の力で活性化させたい",
location: { lon: 136.886326, lat: 35.172757 },
sower_id: "1",
category_id: "6",
},
{
seed_id: "17",
created_at: "2024-09-22T00:00:00Z",
description: "地域の特産品を販売する常設マルシェが欲しい",
description: "地域の農家や漁師などの生産者と直接顔をあわせて、特産品を販売する常設マルシェが欲しい",
location: { lon: 136.886326, lat: 35.172757 },
sower_id: "1",
category_id: "4",
Expand Down
12 changes: 5 additions & 7 deletions src/routes/_auth/seeds/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,11 @@ export const Route = createFileRoute("/_auth/seeds/")({

return (
<p.div key={seed.seed_id} minW={400} p={4} width="1/3">
<Link to={`/projects/${seed.seed_id}`}>
<SownSeed
category={category}
createdAt={formatCreatedAt(seed.created_at)}
description={seed.description ?? ""}
/>
</Link>
<SownSeed
category={category}
createdAt={formatCreatedAt(seed.created_at)}
description={seed.description ?? ""}
/>
</p.div>
);
})}
Expand Down

0 comments on commit 4c39070

Please sign in to comment.