Remove unused SVG files and add a new logo image; update global styles and layout to include a responsive Navbar component.

This commit is contained in:
Norbert Maciaszek
2025-08-05 18:25:28 +02:00
parent 2c329e9ff3
commit 96ef090cef
9 changed files with 100 additions and 24 deletions

View File

@@ -0,0 +1,14 @@
export const Navbar = () => {
return (
<header className="py-4">
<div className="container">
<img
className="mx-auto"
src="/logo.png"
alt="Movie Box"
style={{ maxWidth: 200 }}
/>
</div>
</header>
);
};