fourth commit

This commit is contained in:
2023-05-02 16:32:08 -04:00
parent fef2c7b0de
commit 60ff7f7e84
3 changed files with 519 additions and 20 deletions

View File

@@ -18,23 +18,3 @@ function Home() {
}
export default Home;
import React from "react";
import { Link } from "react-router-dom";
import BannerImage from "../assets/Tokyo-Ghoul-Backgrounds.jpg";
import "../styles/Home.css";
function Home() {
return (
<div className="home" style={{ backgroundImage: `url(${BannerImage})` }}>
<div className="headerContainer">
<h1> Chad's Test Website </h1>
<p> This is kinda fun</p>
<Link to='shop'>
<button> This is a button </button>
</Link>
</div>
</div>
);
}
export default Home;