Skip to content

Instantly share code, notes, and snippets.

@jatinkumar725
Created February 12, 2023 08:30
Show Gist options
  • Save jatinkumar725/b270568db2855788e47d44c5925b87ea to your computer and use it in GitHub Desktop.
Save jatinkumar725/b270568db2855788e47d44c5925b87ea to your computer and use it in GitHub Desktop.
Build First React App
import React from 'react'
import AboutImage from './../Public/img/photo.jpg';
const About = () => {
return (
<>
<h2 className="text-center">
ABOUT US
</h2>
<p>The Cafe was founded in blabla by Mr. Smith in lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<p>In addition to our full espresso and brew bar menu, we serve fresh made-to-order breakfast and lunch sandwiches, as well as a selection of sides and salads and other good stuff.</p>
<div className="blockquote">
<p>
<i>
"Use products from nature for what it's worth - but never too early, nor too late." Fresh is the new sweet.
</i>
</p>
<p>Chef, Coffeeist and Owner: Liam Brown</p>
</div>
<img src={AboutImage} style={{ width: '100%', height: "500px" }} className="mb-3" />
<p>
<strong>Opening hours:</strong> everyday from 6am to 5pm.
</p>
<p>
<strong>Address:</strong> 15 Adr street, 5015, NY
</p>
</>
)
}
export default About
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment