diff --git a/src/components/ShortDescription.scss b/src/components/ShortDescription.scss deleted file mode 100644 index 24dc680..0000000 --- a/src/components/ShortDescription.scss +++ /dev/null @@ -1,3 +0,0 @@ -#short_description { - @apply text-center; -} \ No newline at end of file diff --git a/src/components/ShortDescription.tsx b/src/components/ShortDescription.tsx deleted file mode 100644 index f8bcbc4..0000000 --- a/src/components/ShortDescription.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import './ShortDescription.scss' - -function ShortDescription() { - return ( -

- Découvrez mon parcours en développement, où ma passion précoce pour la programmation a débuté avec la - création d'applications 3D utilisant OpenGL et s'est étendue à la maîtrise de diverses technologies, - notamment le développement Web avec React, Ruby on Rails, Symfony, Tailwindcss et Bootstrap, la réalisation - d'applications mobiles avec Flutter et le développement système en Rust, toujours animé par mon désir - inépuisable d'apprendre et ma curiosité sans bornes. -

- ) -} - -export default ShortDescription \ No newline at end of file diff --git a/src/components/TopComponent.scss b/src/components/TopComponent.scss index 0002eb9..5c83901 100644 --- a/src/components/TopComponent.scss +++ b/src/components/TopComponent.scss @@ -1,3 +1,32 @@ #top { - @apply min-h-screen w-full; + @apply min-h-screen w-full flex flex-col md:flex-row items-center gap-5 relative; + + & > div { + @apply flex-1 p-10; + } + + & > .top__image { + @apply flex justify-center items-center; + + & > img { + @apply mx-auto rounded-lg; + } + } + + & > .top__presentation { + @apply flex flex-col gap-3; + + & > h1 { + @apply font-bold text-2xl; + } + + & > h4 { + @apply font-semibold text-base; + } + + & > p { + @apply font-normal text-sm; + } + } + } \ No newline at end of file diff --git a/src/components/TopComponent.tsx b/src/components/TopComponent.tsx index 30ae893..44b8ae5 100644 --- a/src/components/TopComponent.tsx +++ b/src/components/TopComponent.tsx @@ -1,13 +1,23 @@ -import ShortDescription from './ShortDescription' import './TopComponent.scss' function TopComponent() { return (
-

Florian RICHER

-

Développeur d´application Web et Mobile

- - {/*Reseau sociaux*/} +
+ Ma photo +
+
+

Florian RICHER

+

Développeur d´application Web et Mobile

+ {/*Reseau sociaux*/} +

+ Découvrez mon parcours en développement, où ma passion précoce pour la programmation a débuté avec la + création d'applications 3D utilisant OpenGL et s'est étendue à la maîtrise de diverses technologies, + notamment le développement Web avec React, Ruby on Rails, Symfony, Tailwindcss et Bootstrap, la réalisation + d'applications mobiles avec Flutter et le développement système en Rust, toujours animé par mon désir + inépuisable d'apprendre et ma curiosité sans bornes. +

+
) }