Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Shifting Towards right Logounder #29

Merged
merged 4 commits into from
Jun 22, 2024
Merged
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
8 changes: 5 additions & 3 deletions src/components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ const Navbar = () => {
<section className='bg-orange-500 shadow-xl h-[4rem] top-0 w-full z-[2] fixed flex justify-between items-center'>
<div className='container mx-auto flex justify-between items-center h-full px-30'>
<a href="/" className="flex items-center">
<div className="logo relative flex flex-col items-center">
<p className="text-2xl font-[Alegreya] m-0 p-0 leading-none">VedicVani</p>
<div className="logo relative flex flex-col items-center mt-2.5"> {/* Adjusted margin-top */}
<p className="text-2xl font-[Alegreya] m-0 p-0 leading-none mb-[-4rem]"> {/* Adjusted margin-bottom */}
VedicVani
</p>
<img
className="w-28 h-5.5 mt-0 ml-8 mr-8"
className="w-28 h-6 ml-9 mr-9"
src={logounder}
alt="logo"
/>
Expand Down