Initial commit: IT Nexus Web-App

This commit is contained in:
2026-06-01 20:49:07 +02:00
commit 8023765e6c
387 changed files with 106900 additions and 0 deletions

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