Skip to content

Commit

Permalink
refactor: Remove unused icons and update Main component with new link…
Browse files Browse the repository at this point in the history
… buttons
  • Loading branch information
ItsukiKigoshi committed Aug 1, 2024
1 parent 228b80f commit dc8dba1
Showing 1 changed file with 57 additions and 10 deletions.
67 changes: 57 additions & 10 deletions src/components/Main.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import GitHubIcon from "@mui/icons-material/GitHub";
import InstagramIcon from "@mui/icons-material/Instagram";
import LinkedInIcon from "@mui/icons-material/LinkedIn";
import PodcastsIcon from "@mui/icons-material/Podcasts";
import XIcon from "@mui/icons-material/X";
import {
Avatar,
Box,
Expand All @@ -26,11 +24,6 @@ export default function Main() {
Icon: InstagramIcon,
href: "https://www.instagram.com/itsukikigoshi",
},
{
name: "X",
Icon: XIcon,
href: "https://www.x.com/itsukikigoshi",
},
];

const linkButtons = links.map((link) => (
Expand All @@ -49,7 +42,8 @@ export default function Main() {
<Box
sx={{
display: "grid",
placeItems: "center", // Center the content horizontally and vertically
placeItems: "center",
py: "2px",
}}
>
<Stack
Expand Down Expand Up @@ -80,10 +74,63 @@ export default function Main() {
<Stack sx={{ justifyContent: "center" }} direction="row" spacing={2}>
{linkButtons}
</Stack>
</Stack>
{/* <Stack>
<Card>
<CardContent></CardContent>
<CardContent>
<h2>
Hi there 👋 I'm NOT an engineer but wanna be a creator/artist.
</h2>
<h3>🔭I’m currently thinking of creating...</h3>
<ul>
<li>
<a href="https://github.com/ItsukiKigoshi/open-desk-view">
open-desk-view
</a>
: Open-sourced webcam tool for easily showing docs on ur table
in online meetings like{" "}
<a href="https://support.apple.com/en-gb/guide/mac-help/mchl06927be8/mac">
Apple's 'Desk View'
</a>
.
</li>
<li>
<a href="https://github.com/ItsukiKigoshi/icu-catalogue">
ICU Catalogue
</a>
: Powerful syllabi search engine and academic planning tool for
ICU students.
</li>
<li>
<a href="https://github.com/ItsukiKigoshi/shinonome-bunko">
Shinonome Bunko
</a>
: Automated git-based OCR&peer-review platform for publishing
public domain Japanese literature as e-books.
</li>
<li>
<a href="https://github.com/ItsukiKigoshi/curhythm">Curhythm</a>
: Rubik's Cube-alike musical instrument to generate beat,
melody, harmony & video.
</li>
<li>
OpenPoliCash: Git-based open-source 政治資金収支報告書 database
with an Open Data
</li>
</ul>
<h3>🎈My dream is...</h3>
<ul>
<li>
Collaborating with <a href="https://zutomayo.net">Zutomayo</a>{" "}
as an artist🦔.
</li>
<li>Holding a museum exhibition as a contemporary artist🎨.</li>
</ul>
<h3>📫 How to reach me:</h3>
<p>itsukikigoshi+github[at]gmail.com</p>
</CardContent>
</Card>
</Stack>
</Stack> */}
</Box>
);
}

0 comments on commit dc8dba1

Please sign in to comment.