-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.js
87 lines (81 loc) · 4.63 KB
/
Home.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import React from 'react'
import Carousel from 'react-bootstrap/Carousel';
import Button from 'react-bootstrap/Button';
import { Container } from 'react-bootstrap';
import { FaCartShopping } from "react-icons/fa6";
import About from './About';
import Booking from './Booking'
import Customer from './Customer';
function Home() {
return (
<div>
<Carousel className='bgimage text-white p-5'>
<Carousel.Item>
<div className='w-50 text-start p-4 ms-5 mt-5 mb-5'>
<h1 className='display-3' style={{ fontFamily: "brush script mt" }}>Fast Food Restaurant</h1>
<p className='fs-5'>Doloremque, itaque aperiam facilis rerum, commodi,
temporibus sapiente ad mollitia laborum quam quisquam esse error unde.
Tempora ex doloremque, labore, sunt repellat dolore, iste magni quos nihil
ducimus libero ipsam.
</p>
<Button variant="warning" className='text-white fs-5 px-4 rounded-pill mt-4'>Order Now</Button>
</div>
</Carousel.Item>
<Carousel.Item>
<div className='w-50 text-start p-4 ms-5 mt-5 mb-5'>
<h1 className='display-3' style={{ fontFamily: "brush script mt" }}>Fast Food Restaurant</h1>
<p className='fs-5'>Doloremque, itaque aperiam facilis rerum, commodi,
temporibus sapiente ad mollitia laborum quam quisquam esse error unde.
Tempora ex doloremque, labore, sunt repellat dolore, iste magni quos nihil
ducimus libero ipsam.
</p>
<Button variant="warning" className='text-white fs-5 px-4 rounded-pill mt-4'>Order Now</Button>
</div>
</Carousel.Item>
<Carousel.Item>
<div className='w-50 text-start p-4 ms-5 mt-5 mb-5'>
<h1 className='display-3' style={{ fontFamily: "brush script mt" }}>Fast Food Restaurant</h1>
<p className='fs-5'>Doloremque, itaque aperiam facilis rerum, commodi,
temporibus sapiente ad mollitia laborum quam quisquam esse error unde.
Tempora ex doloremque, labore, sunt repellat dolore, iste magni quos nihil
ducimus libero ipsam.
</p>
<Button variant="warning" className='text-white fs-5 px-4 rounded-pill mt-4'>Order Now</Button>
</div>
</Carousel.Item>
</Carousel>
<Container>
<div className='row mt-5'>
<div className='col'>
<div className='row bg-dark text-white '>
<div className='col-4 p-4'>
<img src='./images/o1.jpg' className='rounded-circle border border-warning border-4 h-100 w-100 image1' alt=''/>
</div>
<div className='col-8 p-2 text-start'>
<h1 style={{fontFamily:"brush script mt"}}>Tasty Thursdays</h1>
<h1 style={{fontFamily:"brush script mt"}}>20% <span className='fs-4'>Off</span></h1>
<Button variant="warning" className='text-white fs-5 px-4 rounded-pill'>Order Now <FaCartShopping /></Button>
</div>
</div>
</div>
<div className='col ms-5'>
<div className='row bg-dark text-white '>
<div className='col-4 p-4'>
<img src='./images/o2.jpg' className='rounded-circle border border-warning border-4 h-100 w-100 image1' alt=''/>
</div>
<div className='col-8 p-2 text-start'>
<h1 style={{fontFamily:"brush script mt"}}>Pzza Days</h1>
<h1 style={{fontFamily:"brush script mt"}}>15% <span className='fs-4'>Off</span></h1>
<Button variant="warning" className='text-white fs-5 px-4 rounded-pill'>Order Now <FaCartShopping /></Button>
</div>
</div>
</div>
</div>
</Container>
<About/>
<Booking></Booking>
<Customer></Customer>
</div>
)
}
export default Home