diff --git a/apps/frontend/public/profile-icon.svg b/apps/frontend/public/profile-icon.svg new file mode 100644 index 00000000..dcea3e61 --- /dev/null +++ b/apps/frontend/public/profile-icon.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/apps/frontend/src/app/components/Header.tsx b/apps/frontend/src/app/components/Header.tsx index bd5c444a..4579a056 100644 --- a/apps/frontend/src/app/components/Header.tsx +++ b/apps/frontend/src/app/components/Header.tsx @@ -1,4 +1,5 @@ import React from 'react'; +import Image from "next/image"; interface HeaderProps { text?: string; @@ -11,20 +12,20 @@ const Header: React.FC = ({ }) => { return (
{/* Dynamic Text Section */} - +
{text} - +
{/* Flexible Icon Section */}
{icon || ( // Default Profile Icon matching Figma
- + Profile Icon
)}