2023-05-29 14:47:53 +02:00
|
|
|
import React from "react";
|
|
|
|
import Lastfm from "./infos/Lastfm";
|
|
|
|
import Speedruncom from "./infos/Speedruncom";
|
|
|
|
import Hackthebox from "./infos/Hackthebox";
|
|
|
|
import Git from "./infos/Git";
|
|
|
|
import Osu from "./infos/Osu";
|
|
|
|
import Anilist from "./infos/Anilist";
|
2023-11-01 21:15:29 +01:00
|
|
|
import Wanikani from "./infos/Wanikani";
|
2023-05-29 14:47:53 +02:00
|
|
|
|
|
|
|
function Infos() {
|
2023-10-30 00:52:36 +01:00
|
|
|
return (
|
2023-10-31 19:29:17 +01:00
|
|
|
<div id="infos" className="hidden lg:inline-block text-white static m-auto lg:bg-gradient-to-r from-sky-600 to-indigo-600
|
|
|
|
border-solid border-white lg:border-l-3 h-screen lg:fixed lg:right-0 lg:overflow-y-auto">
|
2023-05-29 14:47:53 +02:00
|
|
|
<Lastfm/>
|
|
|
|
<Git/>
|
2023-08-20 01:14:37 +02:00
|
|
|
<Speedruncom/>
|
2023-05-29 14:47:53 +02:00
|
|
|
<Hackthebox/>
|
|
|
|
<Anilist/>
|
|
|
|
<Osu/>
|
2023-11-01 21:15:29 +01:00
|
|
|
{/* <Wanikani/> */}
|
2023-05-29 14:47:53 +02:00
|
|
|
</div>
|
2023-10-30 00:52:36 +01:00
|
|
|
)
|
2023-05-29 14:47:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Infos
|