diff --git a/src/App.js b/src/App.js
index 71e0b60..022d16a 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,11 +1,33 @@
-import React from 'react';
+import React, { useState } from 'react';
-import Header from './components/Header';
+import useWindowSize from './useWindowSize';
+
+import HeaderD from './components/HeaderD';
+import HeaderM from './components/HeaderM';
export default function App() {
+ const [currentLanguage, setCurrentLanguage] = useState('en');
+ const [showCookies, setShowCookies] = useState(true);
+
+ const { width } = useWindowSize();
+
return (
{showCookies && cookies}
diff --git a/src/components/HeaderM.js b/src/components/HeaderM.js
new file mode 100644
index 0000000..5d7c336
--- /dev/null
+++ b/src/components/HeaderM.js
@@ -0,0 +1,147 @@
+import React, { useState } from 'react';
+
+import proximity_logo from '../assets/images/proximity_logo.svg';
+import backgroundVideo from '../assets/videos/video.mp4';
+
+export default function HeaderD({
+ currentLanguage,
+ setCurrentLanguage,
+ showCookies,
+ setShowCookies,
+}) {
+ const [showSidebar, setShowSidebar] = useState(false);
+
+ const headerLinkClasses =
+ 'text-gray-100 font-avenirbook font-normal hover:underline focus:underline text-lg w-full bg-gray-900 my-1 py-2 text-center opacity-75 rounded';
+
+ const sidebar = (
+
+ );
+
+ const cookies = (
+
+
+ This website uses cookies to improve your experience. We'll assume
+ you're ok with this, but you can opt out if you wish.
+
+
+
+
+ );
+
+ return (
+
+
+

+
+
+
+
+
+
+ We make people
+
+ more valuable to brands
+
+
+
+
+
+ {showCookies && cookies}
+
+
+ {showSidebar && sidebar}
+
+
+
+ );
+}
diff --git a/tailwind.config.js b/tailwind.config.js
index 707ee50..0b5230e 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -145,6 +145,7 @@ module.exports = {
12: '3rem',
16: '4rem',
20: '5rem',
+ 22: '5.5rem',
24: '6rem',
32: '8rem',
36: '9rem',