feat: add website

This commit is contained in:
tux
2025-03-03 19:44:08 +05:30
parent eb4f430ad7
commit 17fcdc73f7
21 changed files with 790 additions and 2 deletions

View File

@ -0,0 +1,8 @@
/* @refresh reload */
import { render } from "solid-js/web";
import "./index.css";
import App from "./App.tsx";
const root = document.getElementById("root");
render(() => <App />, root!);