feat: implement MVP

This commit is contained in:
2025-01-25 17:15:34 +01:00
parent c2457fd867
commit 6e2477f430
3 changed files with 148 additions and 17 deletions

View File

@@ -1,10 +1,19 @@
import "./App.css";
import Chemistry from "./Chemistry";
import { Chemistry, MVP } from "./Chemistry";
function App() {
return (
<>
<img alt="logo" height="128px" src="logo.svg" />
<h1>cutt</h1>
<span className="grey">cool ultimate team tool</span>
<Chemistry />
<MVP />
<footer>
<p className="grey">
something not working? message <a href="https://t.me/x0124816">me</a>.
</p>
</footer>
</>
);
}