lordfrontend/src/Home.js

90 lines
4.0 KiB
JavaScript

import React from 'react';
import 'bootstrap/dist/css/bootstrap.min.css';
import 'bootstrap/dist/js/bootstrap.min.js';
import CardFilm from './CardFilm';
import './Home.css';
class Home extends React.Component {
render() {
return (
<div>
<p className="sect-title">{this.props.sectionTitle}</p>
<div className="container-mod">
<CardFilm
alt="copertina"
src="https://www.ilpost.it/wp-content/uploads/2017/12/locandine01.jpeg"
title="Card Title"
body="Some quick example text to build on the card title and make up the bulk of the card's content."
/>
<CardFilm
alt="copertina"
src="https://www.ilpost.it/wp-content/uploads/2017/12/locandine02.jpeg"
title="Card Title"
body="Some quick example text to build on the card title and make up the bulk of the card's content."
/>
<CardFilm
alt="copertina"
src="https://www.ilpost.it/wp-content/uploads/2017/12/locandine03.jpeg"
title="Card Title"
body="Some quick example text to build on the card title and make up the bulk of the card's content."
/>
<CardFilm
alt="copertina"
src="https://www.ilpost.it/wp-content/uploads/2017/12/locandine04.jpg"
title="Card Title"
body="Some quick example text to build on the card title and make up the bulk of the card's content."
/>
<CardFilm
alt="copertina"
src="https://www.ilpost.it/wp-content/uploads/2017/12/locandine05.jpg"
title="Card Title"
body="Some quick example text to build on the card title and make up the bulk of the card's content."
/>
<CardFilm
alt="copertina"
src="https://www.ilpost.it/wp-content/uploads/2017/12/locandine06.jpg"
title="Card Title"
body="Some quick example text to build on the card title and make up the bulk of the card's content."
/>
<CardFilm
alt="copertina"
src="https://www.ilpost.it/wp-content/uploads/2017/12/locandine07.jpg"
title="Card Title"
body="Some quick example text to build on the card title and make up the bulk of the card's content."
/>
<CardFilm
alt="copertina"
src="https://www.ilpost.it/wp-content/uploads/2017/12/locandine08.jpg"
title="Card Title"
body="Some quick example text to build on the card title and make up the bulk of the card's content."
/>
<CardFilm
alt="copertina"
src="https://www.ilpost.it/wp-content/uploads/2017/12/locandine09.jpg"
title="Card Title"
body="Some quick example text to build on the card title and make up the bulk of the card's content."
/>
<CardFilm
alt="copertina"
src="https://www.ilpost.it/wp-content/uploads/2017/12/locandine10.jpg"
title="Card Title"
body="Some quick example text to build on the card title and make up the bulk of the card's content."
/>
</div>
</div>
);
}
}
export default Home;