Initial commit: IT Nexus Web-App
This commit is contained in:
16
frontend/src/components/common/Logo.jsx
Normal file
16
frontend/src/components/common/Logo.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
|
||||
const Logo = ({ className, width = 200, height = 60 }) => {
|
||||
return (
|
||||
<img
|
||||
src="/cereda-logo.png"
|
||||
alt="Cereda Systems Logo"
|
||||
className={className}
|
||||
width={width}
|
||||
height={height}
|
||||
style={{ objectFit: 'contain' }}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default Logo;
|
||||
Reference in New Issue
Block a user