blob: efefacfed3988a9bf2568a29c291191c6ba7ab35 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Home.module.css'
export default function Home() {
return (
<div className={styles.container}>
<Head>
<title>Maître Cuisinier</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main className={styles.main}>
<Image src="/logov1-2.png" width={256} height={256} alt="Logo"/>
<h2 className={styles.center}>L'été est là!<br/>L'argent, c'est maintenant!</h2>
<h3>Modèle prototype</h3>
<Image src="/smart-stove.png" width={500} height={300} alt="Render image"/>
<h3>Modèle 3D</h3>
<iframe allowFullScreen width="640" height="480" frameBorder="0" loading="lazy" src="https://p3d.in/e/o8IQK+spin+load"/>
<h3>Publicité vidéo</h3>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Kv4qJVDkma0" title="YouTube video player" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen></iframe>
<h3>Description</h3>
<p>Maître Cuisinier est un cuiseur portable pour les transporteurs de nourriture et il possède le premier cuiseur à écran tactile au monde.</p>
<h3 className={styles.center}>Achetez ce produit à 300 $ avec une remise de 10 %.<br/> Contactez admin@maitre-cuisinier.ca pour commander votre cuisinière maintenant.</h3>
</main>
</div>
)
}
|