Skip to content

Commit

Permalink
deleted un necessary content
Browse files Browse the repository at this point in the history
  • Loading branch information
KeyurGK committed Apr 11, 2023
1 parent da07f1a commit f880edb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 43 deletions.
38 changes: 0 additions & 38 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,38 +0,0 @@
.App {
text-align: center;
}

.App-logo {
height: 40vmin;
pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}

.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}

.App-link {
color: #61dafb;
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
11 changes: 6 additions & 5 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ import { Link } from 'react-router-dom'

const Navbar = () => {
return (
<div className='flex justify:'>
<h3 className='text-purple-500 font-Rowdies text-4xl'>Bit-Vishwa</h3>
<Link to ='/login'><button className='text-white'>Sign In</button></Link>
<button className='text-white'>Sign Up</button>

<div className='flex justify-between mt-[2%]'>
<Link to ='/'><h3 className='text-purple-500 font-Rowdies text-4xl'>Bit-Vishwa</h3></Link>
<div className='flex justify-around w-[20%]'>
<Link to ='/login'><button className='text-white hover:border-green-300 hover:px-4 hover:py-2 hover:rounded-md hover:bg-green-500'>Sign In</button></Link>
<Link to ='/signup'><button className='text-white hover:border-green-300 hover:px-4 hover:py-2 hover:rounded-md hover:bg-purple-500'>Sign Up</button></Link>
</div>
</div>
)
}
Expand Down

0 comments on commit f880edb

Please sign in to comment.