Add timeline

This commit is contained in:
Florian RICHER 2023-06-03 13:19:46 +02:00
parent a1bf6d883a
commit edbe90de42
5 changed files with 99 additions and 8 deletions

View file

@ -1,20 +1,18 @@
import './App.css'
import TopComponent from "./components/TopComponent";
import ShortDescription from "./components/ShortDescription";
import Project from "./components/Project";
import Timeline from "./components/timeline/Timeline";
import TimelineElement from "./components/timeline/TimelineElement";
import {PROJECTS} from "./data/Project";
function App() {
return (
<>
<TopComponent></TopComponent>
<ShortDescription></ShortDescription>
{
[
{ title: 'Site web limouzik', description: 'Le site web de limouzik', organization: 'Limouzik', tags: ['Symfony']},
{ title: 'Application V3', description: 'V3', organization: 'Limouzik', tags: ['React', 'MIDI', 'Webpack', 'Cordova', 'Electron', 'SteamAPI']},
{ title: 'Application V4', description: 'V4', organization: 'Limouzik', tags: ['Unity 3D (2019)', 'MPTK', 'C#', 'WASM', 'SteamAPI']},
].map((props) => (<Project {...props}/>))
}
<Timeline>
{ PROJECTS.map(p => <TimelineElement project={p} />) }
</Timeline>
</>
)
}