diff --git a/src/App.tsx b/src/App.tsx index b59ba5c..92bfce8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,6 +2,8 @@ import Card from "./components/Card" import Profile from "./components/Profile" import Links from "./components/Links" import Keys from "./components/Keys" +import Activities from "./components/Activities" +import Footer from "./components/Footer" import { useState, useEffect } from 'react'; @@ -56,13 +58,12 @@ export default function App() { + -
- - © 2024 yude - -
+
+
+
) diff --git a/src/components/Activities.tsx b/src/components/Activities.tsx new file mode 100644 index 0000000..370b723 --- /dev/null +++ b/src/components/Activities.tsx @@ -0,0 +1,67 @@ +export default function Activities() { + return ( + <> +
+

Recent activities

+
+ +
    +
  1. +
    + +

    + + ICT Troubleshooting Contest 2023 + +

    +

    + Team いちぴろ・エクスプローラ +

    +
  2. +
  3. +
    + +

    + + Poster session + +

    +

    + The 25th IEEE Hiroshima Section Student Symposium +

    +
  4. +
  5. +
    + +

    + + Intern @ Internet Initiative Japan Inc. + +

    +

    + ExperienceCourse -クラウド編- +

    +
  6. +
  7. +
    + +

    + + Intern @ HIROTEC Corporation. + +

    +
  8. +
+
+ + ) + } + \ No newline at end of file diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx new file mode 100644 index 0000000..93337a4 --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,15 @@ +export default function Footer() { + return ( +
+ + + +

+ + © 2024 yude + +

+
+ ) + } + \ No newline at end of file