File size: 575 Bytes
aedd342
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import React from "react";
import "./../sections/Presentation.css";
import NavBar from "./NavBar";

function Presentation() {
  return (
    <div className="presentation" id="principal">
      <NavBar />

      <div className="container-presentation">
        <div className="izquierda">
          <h1>SABORES ARTESANALES, PARA OCASIONES INOLVIDABLES</h1>
          <p>Regala momentos dulces llenos de amor y sabor</p>
        </div>
        <img src="./../src/assets/brownieprincipal.png" alt="personal photo" />
      </div>
    </div>
  );
}

export default Presentation;