init commit
This commit is contained in:
19
frontend/resume-builder/src/components/layouts/Navbar.jsx
Normal file
19
frontend/resume-builder/src/components/layouts/Navbar.jsx
Normal file
@ -0,0 +1,19 @@
|
||||
import React from "react";
|
||||
import ProfileInfoCard from "../Cards/ProfileInfoCard";
|
||||
import { Link } from "react-router-dom";
|
||||
|
||||
const Navbar = () => {
|
||||
return <div className="h-16 bg-white border boredr-b border-gray-200/50 backdrop-blur-[2px] py-2.5 px-4 md:px-0 sticky top-0 z-30">
|
||||
<div className="container mx-auto flex items-center justify-between gap-5">
|
||||
<Link to='/dashboard'>
|
||||
<h2 className="text-lg md:text-xl font-medium text-black leading-5">
|
||||
Resume Builder
|
||||
</h2>
|
||||
</Link>
|
||||
|
||||
<ProfileInfoCard />
|
||||
</div>
|
||||
</div>
|
||||
};
|
||||
|
||||
export default Navbar;
|
||||
Reference in New Issue
Block a user