moved components, fonts, images to main

add privat
add LinkBox to privat
This commit is contained in:
2023-01-15 19:54:03 +01:00
parent 466cb5e822
commit a7ee872ebd
20 changed files with 83 additions and 3 deletions

View File

@@ -1,6 +1,10 @@
import Menu from './components/Menu';
import Foot from './components/Foot';
import NotFound from './components/NotFound'
import Menu from './main/components/Menu';
import Foot from './main/components/Foot';
import NotFound from './main/components/NotFound';
import Links from './privat/components/Links';
import './App.css';
function App() {
@@ -9,6 +13,7 @@ function App() {
<Menu/>
<div className='App-body'>
<NotFound/>
<Links/>
</div>
<Foot/>
</div>