54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
//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";
|
|
import HourRegister from "./Cards/TimeRegister";
|
|
|
|
//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";
|
|
import WeekStaten from "./Pages/Profile/UserFunctions/WeekStaten";
|
|
|
|
//Style
|
|
import "./GlobalStyles.css";
|
|
|
|
//Components exports
|
|
export {
|
|
GlobalRouter,
|
|
Header,
|
|
HeroOne,
|
|
CTA,
|
|
Footer,
|
|
Dropdown,
|
|
CompanyResults,
|
|
FinishedInternShip,
|
|
HourRegister,
|
|
}
|
|
|
|
|
|
//Layout exports
|
|
export {
|
|
DefaultLayout,
|
|
}
|
|
|
|
|
|
//Pages export
|
|
export {
|
|
HomePage,
|
|
InternSearch,
|
|
CompanyProfile,
|
|
UserProfile,
|
|
ContactPage,
|
|
WeekStaten
|
|
} |