Initial commit

This commit is contained in:
2026-02-15 02:53:57 +01:00
commit f3ba3cf1b1
66 changed files with 3016 additions and 0 deletions

19
src/components/Header.jsx Normal file
View File

@@ -0,0 +1,19 @@
import '@/css/Header.css';
import { Link } from 'react-router-dom';
const Header = () => {
return (
<header className={`text-center bg-img`}>
<div className="m-0 p-5 mask">
<div className="d-flex flex-column justify-content-center align-items-center h-100">
<Link to='/' className='text-decoration-none'>
<h1 className='header-title m-0 text-white shadowed'>Tu página web</h1>
</Link>
</div>
</div>
</header>
);
}
export default Header;