1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-09-11 23:09:22 +02:00

refactor: components struture

This commit is contained in:
2024-07-31 11:41:39 +02:00
parent ceeeb2f9c5
commit b5c50728de
72 changed files with 122 additions and 114 deletions

View File

@@ -4,22 +4,22 @@
"private": true,
"type": "module",
"exports": {
"./About": "./src/About/About.tsx",
"./design/Button": "./src/design/Button/Button.tsx",
"./design/Link": "./src/design/Link/Link.tsx",
"./design/Section": "./src/design/Section/Section.tsx",
"./design/Spinner": "./src/design/Spinner/Spinner.tsx",
"./design/Typography": "./src/design/Typography/Typography.tsx",
"./Design/Button": "./src/Design/Button/Button.tsx",
"./Design/Link": "./src/Design/Link/Link.tsx",
"./Design/Spinner": "./src/Design/Spinner/Spinner.tsx",
"./Design/Typography": "./src/Design/Typography/Typography.tsx",
"./Errors/ErrorNotFound": "./src/Errors/ErrorNotFound/ErrorNotFound.tsx",
"./Errors/ErrorServer": "./src/Errors/ErrorServer/ErrorServer.tsx",
"./Footer": "./src/Footer/Footer.tsx",
"./Header": "./src/Header/Header.tsx",
"./Interests": "./src/Interests/Interests.tsx",
"./Header/SwitchTheme": "./src/Header/SwitchTheme.tsx",
"./MainLayout": "./src/MainLayout/MainLayout.tsx",
"./OpenSource": "./src/OpenSource/OpenSource.tsx",
"./Portfolio": "./src/Portfolio/Portfolio.tsx",
"./Skills": "./src/Skills/Skills.tsx"
"./Home/About": "./src/Home/About/About.tsx",
"./Home/Interests": "./src/Home/Interests/Interests.tsx",
"./Home/OpenSource": "./src/Home/OpenSource/OpenSource.tsx",
"./Home/Portfolio": "./src/Home/Portfolio/Portfolio.tsx",
"./Home/Skills": "./src/Home/Skills/Skills.tsx",
"./Layout/Footer": "./src/Layout/Footer/Footer.tsx",
"./Layout/Header": "./src/Layout/Header/Header.tsx",
"./Layout/Header/SwitchTheme": "./src/Layout/Header/SwitchTheme.tsx",
"./Layout/MainLayout": "./src/Layout/MainLayout/MainLayout.tsx",
"./Layout/Section": "./src/Layout/Section/Section.tsx"
},
"scripts": {
"lint:eslint": "eslint src --max-warnings 0 --report-unused-disable-directives",