mirror of
https://github.com/BarkProductions/barkman.git
synced 2026-06-17 07:51:54 +00:00
Switch to TailwindCSS and remove global CSS file
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import '../App.css'
|
||||
import {Link} from "react-router";
|
||||
|
||||
|
||||
@@ -8,13 +7,13 @@ function Home() {
|
||||
return (
|
||||
<>
|
||||
<div>
|
||||
<h1>Home</h1>
|
||||
<h1 className={"text-red-600"}>Home</h1>
|
||||
</div>
|
||||
<p>
|
||||
ARFF ARFF BARK BARK
|
||||
</p>
|
||||
<Link to="/inventory">
|
||||
<button>Inventory</button>
|
||||
<button className="bg-red-600 rounded text-white font-bold px-4 py-2">Inventory</button>
|
||||
</Link>
|
||||
|
||||
</>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import '../App.css'
|
||||
|
||||
import {Link} from "react-router";
|
||||
|
||||
function Inventory() {
|
||||
@@ -7,13 +7,13 @@ function Inventory() {
|
||||
return (
|
||||
<>
|
||||
<div>
|
||||
<h1>Inventory</h1>
|
||||
<h1 className={"text-red-600"}>Inventory</h1>
|
||||
</div>
|
||||
<p>
|
||||
ARFF ARFF BARK BARK
|
||||
</p>
|
||||
<Link to="/">
|
||||
<button>Home</button>
|
||||
<button className="bg-red-600 rounded text-white font-bold px-4 py-2">Home</button>
|
||||
</Link>
|
||||
|
||||
</>
|
||||
|
||||
Reference in New Issue
Block a user