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";
|
|
|
|
|
|
|
|
function Infos() {
|
2023-10-30 00:52:36 +01:00
|
|
|
return (
|
|
|
|
<div className="hidden md:inline-block text-white static m-auto md:bg-gradient-to-r from-sky-600 to-indigo-600
|
2023-05-30 19:34:30 +02:00
|
|
|
border-solid border-white md:border-l-3 h-screen md:fixed md:right-0 md: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/>
|
|
|
|
</div>
|
2023-10-30 00:52:36 +01:00
|
|
|
)
|
2023-05-29 14:47:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Infos
|