Skip to content

Commit

Permalink
add Authencation
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhanshurav committed Nov 3, 2023
1 parent b4ded66 commit d94eff1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Binary file added public/assets/signout.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 10 additions & 2 deletions src/componenets/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,22 @@ import React from 'react'

const Header = () => {
return (
<div className='absolute px-8 w-screen py-2 bg-gradient-to-b from-black z-10'>
<div className='absolute px-8 w-screen py-2 bg-gradient-to-b from-black z-10 flex justify-between'>
<img
src='./assets/Netflix_Logo.png'
alt="Netflixlogo"
className='w-44'
/>
<div className='flex p-2 items-center gap-1'>
<img
src='./assets/signout.png'
alt='Logoutimg'
className='w-11 h-11'
/>
<button className='text-white font-bold'>Sign Out</button>
</div>
</div>
)
}

export default Header
export default Header;

0 comments on commit d94eff1

Please sign in to comment.