init commit

This commit is contained in:
2025-07-07 00:52:41 +05:30
commit 2dd24927bc
81 changed files with 10274 additions and 0 deletions

View 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;