Files
resume-builder-mern/frontend/resume-builder/src/components/layouts/Navbar.jsx
2025-07-07 00:52:41 +05:30

20 lines
613 B
JavaScript

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;