PHP Classes

File: pizzerine/src/components/Home/Home.js

Recommend this page to a friend!
  Classes of Hillary Kollan   React Laravel Stripe MailJet Pizza Ordering   pizzerine/src/components/Home/Home.js   Download  
File: pizzerine/src/components/Home/Home.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: React Laravel Stripe MailJet Pizza Ordering
Web application to process orders of Pizza
Author: By
Last change:
Date: 1 year ago
Size: 561 bytes
 

Contents

Class file image Download
import React from 'react'; import {Link} from "react-router-dom"; import BackGroundImage from "../../Icons/pizza.jpeg"; import './Home.css'; export default function Home() { return ( <div class="home" style={{ backgroundImage: `url(${BackGroundImage})`}}> <div className="headerContainer" > <h1> Sadat's Pizzaria </h1> <p>BEST PIZZA IN TOWN</p> <Link to="/menu"> <button>ORDER ONLINE</button> </Link> </div> </div> ) }