diff --git a/src/assets/pano.gif b/src/assets/pano.gif new file mode 100644 index 0000000..3f33ebe Binary files /dev/null and b/src/assets/pano.gif differ diff --git a/src/components/Header/Header.css b/src/components/Header/Header.css deleted file mode 100644 index 230604d..0000000 --- a/src/components/Header/Header.css +++ /dev/null @@ -1,8 +0,0 @@ -header { - display: flex; - align-items: center; -} - -header > * { - flex: 1; -} \ No newline at end of file diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx deleted file mode 100644 index d3bd9c6..0000000 --- a/src/components/Header/Header.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from "react"; -import "./Header.css"; - -type HeaderProps = {}; - -const Header: React.FC = () => { - return ( -
-
-

Phosphor Icons

-
-
- - - - - - -
-
- ); -}; - -export default Header; diff --git a/src/components/NavBar/NavBar.css b/src/components/NavBar/NavBar.css new file mode 100644 index 0000000..c718853 --- /dev/null +++ b/src/components/NavBar/NavBar.css @@ -0,0 +1,54 @@ +nav { + display: flex; + align-items: center; + height: 96px; + width: 83.33%; + margin: auto; +} + +nav > div { + flex: 1; +} + +.title-container { + display: flex; + align-items: center; +} + +.title { + display: flex; + align-items: baseline; +} + +.title h1 { + font-size: 24px; + line-height: 32px; + margin: 0px 16px 0px 8px; +} + +.title small { + margin-top: 4px; + color: #b2b2b2; + font-size: 16px; +} + +.links { + display: flex; + justify-content: flex-end; + padding-right: 32; + text-align: end; +} + +.links a { + color: black; + text-decoration: none; +} + +.links a:hover { + /* border-bottom: 2px solid black; */ + box-shadow: 0 2px 0px -1px black; +} + +.links a:not(:first-child) { + margin-left: 48px; +} diff --git a/src/components/NavBar/NavBar.tsx b/src/components/NavBar/NavBar.tsx new file mode 100644 index 0000000..1b1f23f --- /dev/null +++ b/src/components/NavBar/NavBar.tsx @@ -0,0 +1,35 @@ +import React from "react"; +import "./NavBar.css"; + +type NavBarProps = {}; + +const NavBar: React.FC = () => { + return ( + + ); +}; + +export default NavBar; diff --git a/src/components/Panorama/Panorama.css b/src/components/Panorama/Panorama.css new file mode 100644 index 0000000..66f8d43 --- /dev/null +++ b/src/components/Panorama/Panorama.css @@ -0,0 +1,5 @@ +figure { + height: 400px; + margin: 0; + background-color: #FFD171; +} \ No newline at end of file diff --git a/src/components/Panorama/Panorama.tsx b/src/components/Panorama/Panorama.tsx new file mode 100644 index 0000000..0c65ee1 --- /dev/null +++ b/src/components/Panorama/Panorama.tsx @@ -0,0 +1,28 @@ +// @ts-nocheck +import React from "react"; +import "./Panorama.css"; + +type PanoramaProps = {}; + +const Panorama: React.FC = () => { + return ( +
+ {/*
*/} + Loading +
+
+
+
+ ); +}; + +export default Panorama;