-
-
- Guus van Meerveld
- © 2021
+const Footer = () => {
+ const year = new Date().getFullYear();
+ return (
+
-
-);
+
+ );
+};
export default Footer;
diff --git a/components/Navbar.tsx b/components/Navbar.tsx
index 01fe949..fdf5524 100644
--- a/components/Navbar.tsx
+++ b/components/Navbar.tsx
@@ -3,8 +3,8 @@ const Navbar = () => (
diff --git a/components/Page.tsx b/components/Page.tsx
index 2850f71..dc22690 100644
--- a/components/Page.tsx
+++ b/components/Page.tsx
@@ -14,7 +14,7 @@ const Page = ({
-
Portfolio | {title}
+
G-VM | {title}
diff --git a/pages/_app.tsx b/pages/_app.tsx
index da89d1e..56a2c1f 100644
--- a/pages/_app.tsx
+++ b/pages/_app.tsx
@@ -1,6 +1,7 @@
import "../styles/milligram.min.css";
import "../styles/raleway.css";
import "../styles/sass/index.scss";
+import "../styles/sass/thanks.scss";
function App({ Component, pageProps }) {
return
;
diff --git a/pages/index.tsx b/pages/index.tsx
index c85edcb..5a7c591 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -5,14 +5,14 @@ import Projects from "../components/Projects";
import Contact from "../components/Contact";
import Footer from "../components/Footer";
-export default function Home() {
- return (
-
-
-
-
-
-
-
- );
-}
+const Home = () => (
+
+
+
+
+
+
+
+);
+
+export default Home;
diff --git a/pages/thanks.tsx b/pages/thanks.tsx
new file mode 100644
index 0000000..3834505
--- /dev/null
+++ b/pages/thanks.tsx
@@ -0,0 +1,20 @@
+import Page from "../components/Page";
+import Navbar from "../components/Navbar";
+
+const Thanks = () => (
+
+
+
+
+
❤️
+
Thank you!
+
Your submission is greatly appreciated!
+
+ Go back
+
+
+
+
+);
+
+export default Thanks;
diff --git a/styles/sass/thanks.scss b/styles/sass/thanks.scss
new file mode 100644
index 0000000..61f8dad
--- /dev/null
+++ b/styles/sass/thanks.scss
@@ -0,0 +1,26 @@
+.message {
+ font-family: "Raleway";
+ height: 100vh;
+ width: 100vw;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+
+ text-align: center;
+
+ .icon {
+ font-size: 10rem;
+ }
+
+ .header {
+ font-size: 5rem;
+ }
+
+ .subtitle {
+ font-size: 3rem;
+ }
+
+ .link {
+ margin-top: 1.5rem;
+ }
+}