[REPO REFACTOR]: changed to a better git repository structure with branches

This commit is contained in:
2025-11-01 05:37:33 +01:00
parent 1f77767d59
commit c72cf3c373
79 changed files with 3782 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import CustomContainer from '@/components/layout/CustomContainer';
import { Row, Col } from 'react-bootstrap';
const Building = () => {
return (
<CustomContainer>
<Row className="justify-content-center">
<Col xs={12} md={6} className="d-flex">
<div className="minecraft-card text-center flex-fill p-5">
<img
src={`${import.meta.env.BASE_URL}images/building.webp`}
alt="Página en construcción"
className="construction-img img-fluid mb-4"
/>
<h1>Pagina en construccion</h1>
<p>Estamos trabajando en ello. ¡Vuelve pronto!</p>
</div>
</Col>
</Row>
</CustomContainer>
);
};
export default Building;