-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.js
41 lines (39 loc) · 1.44 KB
/
about.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
import React from "react";
import "./About.css";
import Image from "../../../assets/restauranfood.jpg";
import ImageRestaurant from "../../../assets/restaurant.jpg";
const About = () => {
return (
<div className="about">
<div>
<h1 className="about-title">Little Lemon</h1>
<h2 className="about-subtitle">Chicago</h2>
<p className="about-description">
Nestled in the heart of bustling Chicago, Little Lemon is where modern
flair meets cozy nostalgia. Our diverse, artisanal menu, featuring
delectable bruschettas, succulent burgers, and refreshing Greek
salads, is a testament to our belief that food is an art. Crafted by
expert chefs with locally-sourced ingredients, our dishes not only
delight the palate but nourish the soul. Whether you're seeking a
romantic dinner, a family meal, or a relaxed atmosphere with friends,
Little Lemon is your ideal culinary destination. Find us in the heart
of Chicago for an unforgettable experience.
</p>
</div>
<img
className="about-image-bruchetta"
src={ImageRestaurant}
alt="Restarurant food"
height={200}
width={200}
/>
<img
className="about-image-restaurant"
src={Image}
alt="Restarurant food"
height={200}
width={200}
/>
</div>
);
};