source: frontend/src/Components/RestaurantDetails/MenuItem.js@ e9b4ba9

Last change on this file since e9b4ba9 was e9b4ba9, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

prototype

  • Property mode set to 100644
File size: 1.6 KB
Line 
1import React from "react";
2import { Col, Row, Image, Container } from "react-bootstrap";
3
4const MenuItem = () => {
5 return (<>
6
7 <a href="#" style={{textDecoration: "none", color:"black"}}>
8 <Container className="py-3 px-1 my-4"
9 style={{
10 border: "4px solid #159895",
11 borderRadius: "1em",
12 boxShadow: "0 3px 5px #159895",
13 maxWidth: "90%"
14 }}>
15 <Row>
16 <Col className="d-flex justify-content-center mb-3">
17 <Image
18 src="https://www.tasteofhome.com/wp-content/uploads/2019/01/medium-rare-steak-shutterstock_706040446.jpg"
19 style={{
20 height: "7em",
21 borderRadius: "1em",
22 boxShadow: "0 4px 20px lightblue",
23 maxWidth: "100%",
24 }}
25 ></Image>
26 </Col>
27 </Row>
28 <Row>
29 <Col className="d-flex flex-column justify-content-center " style={{textAlign: "center"}}>
30 <h4>Име</h4>
31 <h6>Свинско, Телешко, прасечко, ребра, чорба, тикви, компирМанЏа</h6>
32 </Col>
33 </Row>
34 <Row>
35 <Col className="d-flex flex-column justify-content-center align-content-center" >
36
37 <h5>Цена: 99.99$</h5>
38 </Col>
39 </Row>
40 </Container>
41 </a>
42
43 </>)
44}
45
46export default MenuItem;
Note: See TracBrowser for help on using the repository browser.