Update
This commit is contained in:
parent
4555364f9d
commit
54dfa13d79
4 changed files with 6 additions and 3 deletions
|
@ -0,0 +1,3 @@
|
||||||
|
#root {
|
||||||
|
@apply m-0 p-0;
|
||||||
|
}
|
|
@ -1,13 +1,11 @@
|
||||||
import './App.css'
|
import './App.css'
|
||||||
import TopComponent from "./components/TopComponent";
|
import TopComponent from "./components/TopComponent";
|
||||||
import ShortDescription from "./components/ShortDescription";
|
|
||||||
import MonParcours from './components/MonParcours';
|
import MonParcours from './components/MonParcours';
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<TopComponent></TopComponent>
|
<TopComponent></TopComponent>
|
||||||
<ShortDescription></ShortDescription>
|
|
||||||
<MonParcours/>
|
<MonParcours/>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#top {
|
#top {
|
||||||
@apply bg-red-500 text-center;
|
@apply min-h-screen w-full;
|
||||||
}
|
}
|
|
@ -1,3 +1,4 @@
|
||||||
|
import ShortDescription from './ShortDescription'
|
||||||
import './TopComponent.scss'
|
import './TopComponent.scss'
|
||||||
|
|
||||||
function TopComponent() {
|
function TopComponent() {
|
||||||
|
@ -5,6 +6,7 @@ function TopComponent() {
|
||||||
<div id="top">
|
<div id="top">
|
||||||
<h1>Florian RICHER</h1>
|
<h1>Florian RICHER</h1>
|
||||||
<h4>Développeur d´application Web et Mobile</h4>
|
<h4>Développeur d´application Web et Mobile</h4>
|
||||||
|
<ShortDescription></ShortDescription>
|
||||||
{/*Reseau sociaux*/}
|
{/*Reseau sociaux*/}
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue