2023-06-04 14:19:47 +02:00
|
|
|
|
import ShortDescription from './ShortDescription'
|
2023-04-02 17:03:50 +02:00
|
|
|
|
import './TopComponent.scss'
|
|
|
|
|
|
|
|
|
|
function TopComponent() {
|
|
|
|
|
return (
|
|
|
|
|
<div id="top">
|
|
|
|
|
<h1>Florian RICHER</h1>
|
|
|
|
|
<h4>Développeur d´application Web et Mobile</h4>
|
2023-06-04 14:19:47 +02:00
|
|
|
|
<ShortDescription></ShortDescription>
|
2023-04-02 17:03:50 +02:00
|
|
|
|
{/*Reseau sociaux*/}
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
export default TopComponent
|