[REPO REFACTOR]: changed to a better git repository structure with branches
This commit is contained in:
24
src/components/layout/Building.jsx
Normal file
24
src/components/layout/Building.jsx
Normal 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;
|
||||
Reference in New Issue
Block a user