Skip to content

Commit

Permalink
Merge pull request #4 from nikhilbksi/main
Browse files Browse the repository at this point in the history
Top Component
  • Loading branch information
nikhilbksi authored Nov 15, 2022
2 parents 7f77df3 + 10c21d1 commit 0aeda0c
Show file tree
Hide file tree
Showing 17 changed files with 2,867 additions and 405 deletions.
27 changes: 27 additions & 0 deletions components/top.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import Image from 'next/image';
import DSClight from '../public/DSClight.png';
import hacktober from '../public/hacktober.png';
import servatom from '../public/servatom.png';


const Top= ()=>{
return (
<div className='flex px-32 py-3 w-full justify-between bg-[#f4f4f4] align-middle'>

<div className=''>
<a href='https://dsctiet.com/#/'>
<Image src={DSClight} alt="dsc-logo" width={250}/>
</a>
</div>

<div className='flex gap-10'>
<Image src={hacktober} alt="hacktober-logo" width={50}/>
<a href='https://servatom.com/'>
<Image src={servatom} alt="servatom-logo" width={50}/>
</a>
</div>
</div>
);
}

export default Top;
Loading

0 comments on commit 0aeda0c

Please sign in to comment.