This commit is contained in:
frits000000
2020-11-25 17:48:56 +01:00
parent 85bd80ed4b
commit 29909ff541
40 changed files with 18044 additions and 0 deletions
@@ -0,0 +1,50 @@
//Components imports
import GlobalRouter from "./Routing/Router";
import Header from "./Header/Header";
import HeroOne from "./Hero/Hero";
import CTA from "./CTA/CTA"
import Footer from "./Footer/Footer";
import Dropdown from "./Dropdown/Dropdown";
import CompanyResults from "./Cards/CompanyResult";
import FinishedInternShip from "./Cards/FinishedInternCard";
//Layout imports
import DefaultLayout from "./Layouts/DefaultLayout";
//Pages imports
import HomePage from './Pages/Home/HomePage';
import InternSearch from "./Pages/Search/InternSearchPage";
import CompanyProfile from "./Pages/Profile/CompanyProfile";
import UserProfile from "./Pages/Profile/UserProfile";
import ContactPage from "./Pages/Contact/Contact";
//Style
import "./GlobalStyles.css";
//Components exports
export {
GlobalRouter,
Header,
HeroOne,
CTA,
Footer,
Dropdown,
CompanyResults,
FinishedInternShip,
}
//Layout exports
export {
DefaultLayout,
}
//Pages export
export {
HomePage,
InternSearch,
CompanyProfile,
UserProfile,
ContactPage,
}