-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCircles.js
More file actions
23 lines (21 loc) · 767 Bytes
/
Circles.js
File metadata and controls
23 lines (21 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React from "react";
import im1 from './img/croissant.JPG';
import im2 from './img/tang.JPG';
import im3 from './img/toast.JPG';
import im4 from './img/cheesecake.JPG';
import im5 from './img/mocha.JPG';
import im6 from './img/taco.JPG';
function Circles(){
return(
<div className="c1">
<h4>Our Specialties</h4>
<img src={im1}></img><figcaption>Croissant</figcaption>
<img src={im2}></img><figcaption>Citrus Ale</figcaption>
<img src={im3}></img><figcaption>Mexican toast</figcaption>
<img src={im4}></img><figcaption>Cheesecake</figcaption>
<img src={im5}></img><figcaption>Mocha </figcaption>
<img src={im6}></img><figcaption>Tacos</figcaption>
</div>
);
}
export default Circles;