Skip to content
This repository was archived by the owner on Mar 15, 2025. It is now read-only.

Commit 7918862

Browse files
committed
Minimum commit
1 parent 90c997f commit 7918862

File tree

5 files changed

+5
-12
lines changed

5 files changed

+5
-12
lines changed

src/assets/picture.png

-2.85 MB
Loading

src/components/sections/Experiences.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export default function Experiences(): ReactElement {
127127
</Text>
128128
</Center>
129129
<Center>
130-
<p.div h={1300} m={3} w={isMobile ? 500 : 700}>
130+
<p.div h={1300} m={3} mb={20} w={isMobile ? 500 : 700}>
131131
{ExperiencesList.map((experience, index) => (
132132
<Experience
133133
key={experience.name}

src/components/sections/Hobbies.tsx

+3-6
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const hobbiesList: HobbyData[] = [
4242
こんなあらすじだけでは伝わらない良さが詰まっているのでぜひ読んでください。なんなら私が貸します。
4343
他にも伊藤計劃のユートピアな近未来に馴染めない女の子達の壮大な自殺と世界の話「ハーモニー」、
4444
チャック・パラニュークの独特の読み応えの文章がクセになる「ファイト・クラブ」も大好きな本です。
45-
なので布教計画を立案中...`,
45+
布教計画を立案中...`,
4646
},
4747
{
4848
name: "Anime",
@@ -128,11 +128,7 @@ function Hobby({
128128
<Text inherit>{name}</Text>
129129
</Flex>
130130
<p.div fontSize={16}>
131-
<Spoiler
132-
hideLabel="オタクの長尺の語りウザいから消すボタン"
133-
maxHeight={200}
134-
showLabel="もっとみせる"
135-
>
131+
<Spoiler hideLabel="" maxHeight={200} showLabel="もっとみせる">
136132
<Text inherit>{description}</Text>
137133
</Spoiler>
138134
</p.div>
@@ -169,6 +165,7 @@ export default function Hobbies(): ReactElement {
169165
gridColor={colorScheme === "light" ? "gray.9" : "gray.3"}
170166
h={300}
171167
legendProps={{ verticalAlign: "bottom" }}
168+
mb={10}
172169
series={[
173170
{ name: "Program", color: "red.6" },
174171
{ name: "Read", color: "orange.6" },

src/components/sections/Top.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function Top(): ReactElement {
1616
src={picture}
1717
/>
1818
<p.div
19-
bottom={20}
19+
bottom={isMobile ? 10 : 20}
2020
color="white"
2121
fontFamily="Noto serif JP"
2222
fontSize={isMobile ? 30 : 50}

src/pages/index/+Page.tsx

-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ import Skills from "@/components/sections/Skills";
1111
import Experiences from "@/components/sections/Experiences";
1212
import Hobbies from "@/components/sections/Hobbies";
1313
import { $colorScheme } from "@/stores/option";
14-
// import Awards from "@/components/sections/Awards";
15-
// import Works from "@/components/sections/Works";
1614
// import Products from "@/components/sections/Products";
1715
// import Blogs from "@/components/sections/Blogs";
1816

@@ -114,8 +112,6 @@ export default function Home(): ReactElement {
114112
<Experiences />
115113
<Hobbies />
116114
{/*
117-
<Awards />
118-
<Works />
119115
<Products />
120116
<Blogs />
121117
*/}

0 commit comments

Comments
 (0)