Last active
June 10, 2021 10:50
-
-
Save estebanmunchjones2019/3150280ff93707095f0a0428e537d05a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Example of card image using <Image /> component | |
<div className="card" style={{width: "18rem"}}> | |
<Image | |
src="/assets/images/unsplash-1.jpeg" | |
// just put the original width and height of the original image, in order to provide the right aspect ratio | |
// Next.js will automatically reduce the size if the rendered image needs to be smaller. | |
width={2400} | |
height={1598} | |
layout="responsive" | |
className="card-img-top" alt="..." /> | |
<div className="card-body"> | |
<h5 className="card-title">Card title</h5> | |
<p className="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p> | |
<a href="#" className="btn btn-primary">Go somewhere</a> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment