Skip to content

Commit

Permalink
feat: update about me to link to the github readme
Browse files Browse the repository at this point in the history
  • Loading branch information
itsukikigoshi committed Aug 21, 2024
1 parent 11441a1 commit e387f62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 63 deletions.
48 changes: 0 additions & 48 deletions src/components/DialogAboutMe.tsx

This file was deleted.

17 changes: 2 additions & 15 deletions src/components/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,7 @@ import {
Typography,
} from "@mui/material";

import DialogAboutMe from "@/components/DialogAboutMe";
import { useState } from "react";

export default function Main() {
const [open, setOpen] = useState(false);

const handleClickOpen = () => {
setOpen(true);
};

const handleClose = () => {
setOpen(false);
};

const links = [
{
name: "GitHub",
Expand Down Expand Up @@ -80,11 +67,11 @@ export default function Main() {
<Button
startIcon={<TipsAndUpdatesIcon />}
variant="outlined"
onClick={handleClickOpen}
href="https://github.com/ItsukiKigoshi/ItsukiKigoshi/blob/main/README.md"
target="_blank"
>
About Me
</Button>
<DialogAboutMe open={open} onClose={handleClose} />
<Button
startIcon={<LinkedInIcon />}
variant="contained"
Expand Down

0 comments on commit e387f62

Please sign in to comment.