Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13,684 changes: 5,891 additions & 7,793 deletions package-lock.json

Large diffs are not rendered by default.

Binary file removed public/favicon.ico
Binary file not shown.
Binary file added public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
Expand Down
Binary file modified public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/illustrations/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react";
import "./Navbar.scss";
import Logo from"../../assets/illustrations/logo512.png";


const Navbar = () => {
Expand Down Expand Up @@ -27,6 +28,9 @@ const Navbar = () => {
<div className="navbar">
{
<>
<div className="logoContainer">
<img src={Logo} alt="Logo" className="logoImg"/>
</div>
<div onClick={scrollToHome}>Home</div>
<div onClick={scrollToAbout}>About us</div>
<div onClick={scrollToTeam}>Team</div>
Expand Down
16 changes: 13 additions & 3 deletions src/components/Navbar/Navbar.scss
Original file line number Diff line number Diff line change
@@ -1,23 +1,33 @@
@import "../../styles/variables.scss";

.navbar {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin: 1%;
position: fixed;
top: 0;
left: 0;
right: 0;
display: flex;
clip-path: polygon(3% 0, 100% 0%, 97% 100%, 0% 100%);
background: transparent;
border-radius: 1vh;
background: linear-gradient(95.8deg, #ba81ff 0%, #ff6a95 100%);
backdrop-filter: blur(4px);
height: 60px;
gap: 1rem;
padding-left: 60vw;
align-items: center;
font-weight: 600;
cursor: pointer;
z-index:999;
color: white;
}
.text-link {
text-decoration: inherit;
color: inherit;
}


.logoImg{
margin-right: 65vw;
margin-left: 2vw;
width: 50px;
height: 80px;
}
20 changes: 20 additions & 0 deletions src/pages/Home/Home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,23 @@
max-height: 100vh;
overflow: auto;
}
::-webkit-scrollbar {
width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: linear-gradient(95.8deg, #ba81ff 0%, #ff6a95 100%);;
border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #ba81ff;
}

4 changes: 4 additions & 0 deletions src/pages/Home/components/Footer/Footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
cursor: pointer;
text-underline-offset: 4px;
}
a{
text-decoration: none;
color: #000;
}
}
}
}
Expand Down