Switch to TailwindCSS and remove global CSS file

This commit is contained in:
2025-01-12 15:16:21 -06:00
parent 211fcac0c3
commit ea965b6834
9 changed files with 1069 additions and 117 deletions
+2 -3
View File
@@ -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>
</>
+3 -3
View File
@@ -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>
</>