Add Tag, Project, ShortDescription, TopComponent

This commit is contained in:
Florian RICHER 2023-04-02 17:03:50 +02:00
parent 4cb5e97faf
commit 8d641bf598
11 changed files with 122 additions and 5 deletions

View file

@ -1,10 +1,22 @@
import './App.css'
import TopComponent from "./components/TopComponent";
import ShortDescription from "./components/ShortDescription";
import Project from "./components/Project";
function App() {
return (
<h1 className="text-3xl font-bold underline">
Hello world!
</h1>
)
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}/>))
}
</>
)
}
export default App