Initial commit

This commit is contained in:
2025-07-17 13:52:11 -07:00
commit 04db244c97
39 changed files with 7465 additions and 0 deletions

6
src/App.scss Normal file
View File

@@ -0,0 +1,6 @@
@use "tailwindcss" as *;
@use "@fontsource/roboto" as *;
body {
font-family: "Roboto", sans-serif;
}

11
src/App.tsx Normal file
View File

@@ -0,0 +1,11 @@
import "./App.scss";
function App() {
return (
<main className="container">
<p>Berry Dash Manager</p>
</main>
);
}
export default App;

9
src/main.tsx Normal file
View File

@@ -0,0 +1,9 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);

1
src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
/// <reference types="vite/client" />