diff --git a/src/components/social-sphere-sidebar.tsx b/src/components/social-sphere-sidebar.tsx index 66457c0..1379a06 100644 --- a/src/components/social-sphere-sidebar.tsx +++ b/src/components/social-sphere-sidebar.tsx @@ -15,6 +15,7 @@ import { SidebarMenuItem, SidebarRail, } from "@/components/ui/sidebar" +import Profile from './ui/profile' export function SocialSphereSidebar() { return ( @@ -62,22 +63,8 @@ export function SocialSphereSidebar() { - - - + ) } - diff --git a/src/components/ui/profile.tsx b/src/components/ui/profile.tsx new file mode 100644 index 0000000..86bd54e --- /dev/null +++ b/src/components/ui/profile.tsx @@ -0,0 +1,35 @@ +import React from "react"; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; +import { Button } from "@/components/ui/button"; +import { SidebarFooter } from "@/components/ui/sidebar"; +import { Gem, GemIcon } from "lucide-react"; + +const Profile = () => { + return ( + <> + +
+ Navbar Profile +
+ +
+ + ); +}; + +export default Profile;