2023-04-02 16:24:06 +02:00
|
|
|
import './App.css'
|
2023-04-02 17:03:50 +02:00
|
|
|
import TopComponent from "./components/TopComponent";
|
|
|
|
import ShortDescription from "./components/ShortDescription";
|
2023-06-03 13:19:46 +02:00
|
|
|
import Timeline from "./components/timeline/Timeline";
|
|
|
|
import TimelineElement from "./components/timeline/TimelineElement";
|
|
|
|
import {PROJECTS} from "./data/Project";
|
2023-04-02 16:24:06 +02:00
|
|
|
|
|
|
|
function App() {
|
2023-04-02 17:03:50 +02:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<TopComponent></TopComponent>
|
|
|
|
<ShortDescription></ShortDescription>
|
2023-06-03 13:19:46 +02:00
|
|
|
<Timeline>
|
|
|
|
{ PROJECTS.map(p => <TimelineElement project={p} />) }
|
|
|
|
</Timeline>
|
2023-04-02 17:03:50 +02:00
|
|
|
</>
|
|
|
|
)
|
2023-04-02 16:24:06 +02:00
|
|
|
}
|
2023-04-02 17:03:50 +02:00
|
|
|
|
2023-04-02 16:24:06 +02:00
|
|
|
export default App
|