Not quite the style yet... But!

This commit is contained in:
DavidBelisle
2022-10-14 23:36:59 -04:00
parent 1f7c97949d
commit 355e1761b4
8 changed files with 104 additions and 8 deletions

View File

@@ -2,7 +2,7 @@ import React from "react";
import { useEffect } from "react";
import ContactInfo from "../components/ContactInfo";
const AbtouUs = () => {
const AboutUs = () => {
useEffect(() => {
document.title = 'À propos de nous';
@@ -18,7 +18,7 @@ const AbtouUs = () => {
<br />
<div className="row">
<div className="col col-12 col-md-6 col-lg-4 ">
<img className="border-quetaine" src="/images/madamebrossard.jpg"/>
<img className="border-quetaine" src="/images/madamebrossard.jpg" alt=""/>
</div>
<div className="col col-12 col-md-6 col-lg-8 employee-text">
<br />
@@ -50,7 +50,7 @@ const AbtouUs = () => {
<br />
</div>
<div className="col col-12 col-md-6 col-lg-4">
<img className="border-quetaine" src="/images/moman.jpg"/>
<img className="border-quetaine" src="/images/moman.jpg" alt=""/>
</div>
</div>
<br />
@@ -62,4 +62,4 @@ const AbtouUs = () => {
);
}
export default AbtouUs;
export default AboutUs;

View File

@@ -0,0 +1,39 @@
import { useEffect } from "react";
import ItemList from "../components/ItemList";
const Morceaux = () => {
const products = [
{
"name": "Ceinture flèchée",
"status": "Disponible!",
"price": "85,86",
"imageUrl": "/images/ceintureflechee.jpg"
},
{
"name": "Pantoufles du Canadien en Phentex",
"status": "Non disponible...",
"price": "15,64",
"imageUrl": "/images/pantouflesCH.jpg"
},
{
"name": "Jean-Luc Mongrain",
"status": "Disponible!",
"price": "1453,12",
"imageUrl": "/images/jeanlucmongrain.jpg"
}
];
useEffect(() => {
document.title = 'Morceaux';
});
return (
<div className="morceaux-container">
<h3>QWERTY</h3>
<ItemList items={products} />
</div>
);
}
export default Morceaux;