diff --git a/package-lock.json b/package-lock.json index 0662adc..8d85280 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,6 +17,7 @@ "@vitejs/plugin-react-swc": "^3.0.0", "autoprefixer": "^10.4.14", "postcss": "^8.4.21", + "sass": "^1.60.0", "tailwindcss": "^3.3.1", "typescript": "^4.9.3", "vite": "^4.2.0" @@ -1065,6 +1066,12 @@ "node": ">= 0.4.0" } }, + "node_modules/immutable": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", + "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", + "dev": true + }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -1609,6 +1616,23 @@ "queue-microtask": "^1.2.2" } }, + "node_modules/sass": { + "version": "1.60.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.60.0.tgz", + "integrity": "sha512-updbwW6fNb5gGm8qMXzVO7V4sWf7LMXnMly/JEyfbfERbVH46Fn6q02BX7/eHTdKpE7d+oTkMMQpFWNUMfFbgQ==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, "node_modules/scheduler": { "version": "0.23.0", "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", diff --git a/package.json b/package.json index b736cfb..e12f6c3 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "@vitejs/plugin-react-swc": "^3.0.0", "autoprefixer": "^10.4.14", "postcss": "^8.4.21", + "sass": "^1.60.0", "tailwindcss": "^3.3.1", "typescript": "^4.9.3", "vite": "^4.2.0" diff --git a/src/App.tsx b/src/App.tsx index cd70921..fe9b394 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -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 ( -
{props.description}
+ { + props.tags.map((t) => (+ 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/Tag.scss b/src/components/Tag.scss new file mode 100644 index 0000000..e1c19c8 --- /dev/null +++ b/src/components/Tag.scss @@ -0,0 +1,2 @@ +.tag { +} \ No newline at end of file diff --git a/src/components/Tag.tsx b/src/components/Tag.tsx new file mode 100644 index 0000000..6a912c8 --- /dev/null +++ b/src/components/Tag.tsx @@ -0,0 +1,15 @@ +import './Tag.scss' + +interface TagProps { + name: string +} + +function Tag(props: TagProps) { + return ( + + {props.name} + + ) +} + +export default Tag \ No newline at end of file diff --git a/src/components/TopComponent.scss b/src/components/TopComponent.scss new file mode 100644 index 0000000..87a49c8 --- /dev/null +++ b/src/components/TopComponent.scss @@ -0,0 +1,3 @@ +#top { + @apply bg-red-500 text-center; +} \ No newline at end of file diff --git a/src/components/TopComponent.tsx b/src/components/TopComponent.tsx new file mode 100644 index 0000000..2bde2ae --- /dev/null +++ b/src/components/TopComponent.tsx @@ -0,0 +1,12 @@ +import './TopComponent.scss' + +function TopComponent() { + return ( +