diff --git a/index.html b/index.html index a99a55a..0b00276 100644 --- a/index.html +++ b/index.html @@ -17,6 +17,15 @@ href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap" rel="stylesheet" /> + + + Mariia Shabelnik diff --git a/public/img/letsfly_1.png b/public/img/letsfly_1.png new file mode 100644 index 0000000..cd97f11 Binary files /dev/null and b/public/img/letsfly_1.png differ diff --git a/public/img/letsfly_2.png b/public/img/letsfly_2.png new file mode 100644 index 0000000..69c7b04 Binary files /dev/null and b/public/img/letsfly_2.png differ diff --git a/public/img/letsfly_3.png b/public/img/letsfly_3.png new file mode 100644 index 0000000..305399c Binary files /dev/null and b/public/img/letsfly_3.png differ diff --git a/public/img/net0_0.png b/public/img/net0_0.png new file mode 100644 index 0000000..308c19d Binary files /dev/null and b/public/img/net0_0.png differ diff --git a/public/img/net0_1.png b/public/img/net0_1.png new file mode 100644 index 0000000..836f7b4 Binary files /dev/null and b/public/img/net0_1.png differ diff --git a/public/img/net0_2.png b/public/img/net0_2.png new file mode 100644 index 0000000..544eb53 Binary files /dev/null and b/public/img/net0_2.png differ diff --git a/src/App.css b/src/App.css deleted file mode 100644 index dd77cfb..0000000 --- a/src/App.css +++ /dev/null @@ -1,109 +0,0 @@ -body { - margin: 0; - font-family: "Roboto Mono", monospace; - background-color: #302f39; - color: white; -} - -.container { - max-width: 1000px; - margin: 0 auto; - padding: 0 1em; -} - -.nav .container { - height: 4em; -} - -.content { - margin-top: 5em; -} - -.nav { - background-color: #302f38; - height: 4em; - - position: fixed; - left: 0; - right: 0; - top: 0; - z-index: 100000; -} - -/*box-shadow: inset 0px 3px 20px 10px rgba(0, 0, 0, 0.3);*/ - -.nav a { - text-decoration: none; - color: #e5e5ff; - transition: 0.3s; -} - -.nav a:hover { - color: #fff; - text-shadow: 0 0 5px #f2ef00; -} - -.nav-items { - display: flex; - justify-content: space-between; - height: 100%; - align-items: center; -} - -.menu-items { - display: flex; -} - -.menu-items div { - margin-left: 1em; -} - -.logo { - font-size: 2em; - font-weight: bold; -} - -.logo a { - text-shadow: 0 0 5px #ccff00, 0 0 15px #ccff00; - z-index: 10000; -} - -.hamburger { - display: none; -} - -.copyright { - font-size: 0.7em; - text-align: center; -} - -.hamburger-menu { - background-color: #302f38; - z-index: 100; - position: fixed; - right: 0; - backdrop-filter: blur(3px) contrast(60%); - -webkit-backdrop-filter: blur(3px) contrast(60%); - top: 4em; - bottom: 0; - left: 0px; - display: flex; - flex-direction: column; - justify-content: center; - align-items: flex-end; -} - -.hamburger-menu a { - font-size: 2em; - text-decoration: none; - margin-right: 1em; -} - -@media screen and (max-width: 768px) { - .hamburger { - display: inline; - } - .menu-items { - display: none; - } -} diff --git a/src/components/Header.jsx b/src/components/Header.jsx index 1bf9a0a..1622358 100644 --- a/src/components/Header.jsx +++ b/src/components/Header.jsx @@ -40,7 +40,7 @@ function Header() { ); }); - const headerClasses = ["sticky", "top-0", "z-40", "backdrop-blur-sm", "h-16"]; + const headerClasses = ["sticky", "top-0", "z-40", "backdrop-blur-md", "h-16"]; const logoClasses = ["hover:drop-shadow-light"]; const overlayMenu = [ "bg-black/90", @@ -73,7 +73,7 @@ function Header() {