+ Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+
+
+
+
+
+
+
+ )
+ }
+}
+
+export default ContactPage;
\ No newline at end of file
diff --git a/ReactJS/alfaprentice/src/Components/Pages/Home/HomePage.css b/ReactJS/alfaprentice/src/Components/Pages/Home/HomePage.css
index f1b58d8..4950c2c 100644
--- a/ReactJS/alfaprentice/src/Components/Pages/Home/HomePage.css
+++ b/ReactJS/alfaprentice/src/Components/Pages/Home/HomePage.css
@@ -58,4 +58,8 @@
.OpleidingItemInner:hover{
transform: scale(1.1);
+}
+
+a{
+ text-decoration: none !important;
}
\ No newline at end of file
diff --git a/ReactJS/alfaprentice/src/Components/Routing/Router.js b/ReactJS/alfaprentice/src/Components/Routing/Router.js
index ffbc78a..00d8c3b 100644
--- a/ReactJS/alfaprentice/src/Components/Routing/Router.js
+++ b/ReactJS/alfaprentice/src/Components/Routing/Router.js
@@ -16,6 +16,7 @@ import {
InternSearch,
CompanyProfile,
UserProfile,
+ ContactPage,
} from '../';
//Sub routes
@@ -41,6 +42,7 @@ class GlobalRouter extends React.Component {
+
diff --git a/ReactJS/alfaprentice/src/Components/index.js b/ReactJS/alfaprentice/src/Components/index.js
index fe6dd07..87b6920 100644
--- a/ReactJS/alfaprentice/src/Components/index.js
+++ b/ReactJS/alfaprentice/src/Components/index.js
@@ -16,6 +16,7 @@ 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";
@@ -45,4 +46,5 @@ export {
InternSearch,
CompanyProfile,
UserProfile,
+ ContactPage,
}
\ No newline at end of file