2023-02-26 15:49:26 +00:00
|
|
|
import React from 'react';
|
|
|
|
import BottomFPage from './components/BottomFPage';
|
|
|
|
import './style/App.scss';
|
|
|
|
import AppProvider from './components/AppContext';
|
|
|
|
import SearchBox from './components/SelectBox';
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
|
|
|
|
<div className="container">
|
|
|
|
<div className="logo">
|
|
|
|
<img className='box' src='img/skrytka.png' alt="" />
|
|
|
|
</div>
|
|
|
|
<h1 className='welcome'>Witaj!</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<AppProvider>
|
|
|
|
<SearchBox />
|
|
|
|
|
|
|
|
<BottomFPage />
|
|
|
|
</AppProvider>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2023-03-06 20:58:29 +00:00
|
|
|
<footer className='footerFirstSite'><p className='skrytka-date'>Skrytka 2023</p>Affero General Public License v3.0</footer>
|
2023-02-26 15:49:26 +00:00
|
|
|
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|