2020-12-10 22:58:46 +01:00
|
|
|
import './App.css';
|
2020-12-11 00:35:35 +01:00
|
|
|
import './_sass/index.scss';
|
|
|
|
|
|
|
|
import MenuComponent from './components/MenuComponent/index';
|
|
|
|
import MainCard from './components/MainCard/MainCard';
|
2020-12-11 01:23:40 +01:00
|
|
|
import ProjectsCard from './components/ProjectsCard';
|
2020-12-27 22:43:02 +01:00
|
|
|
import ContactCard from './components/ContactCard';
|
2020-12-29 17:12:07 +01:00
|
|
|
import FooterCard from './components/FooterCard';
|
2020-12-10 22:58:46 +01:00
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
|
|
|
<div className="App">
|
2020-12-11 00:35:35 +01:00
|
|
|
<MenuComponent/>
|
|
|
|
<MainCard/>
|
2020-12-11 01:23:40 +01:00
|
|
|
<ProjectsCard/>
|
2020-12-27 22:43:02 +01:00
|
|
|
<ContactCard/>
|
2020-12-29 17:12:07 +01:00
|
|
|
<FooterCard/>
|
2020-12-10 22:58:46 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|