From 6e1fbeceedada4de17a12bb25fad9c28933d6b29 Mon Sep 17 00:00:00 2001 From: Nicolas James Date: Fri, 14 Feb 2025 16:40:30 +1100 Subject: initial commit --- src/index.jsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/index.jsx (limited to 'src/index.jsx') diff --git a/src/index.jsx b/src/index.jsx new file mode 100644 index 0000000..e0f355b --- /dev/null +++ b/src/index.jsx @@ -0,0 +1,25 @@ +import React from "react"; +import {createRoot} from "react-dom/client"; +import {BrowserRouter, Routes, Route} from "react-router-dom"; + +import Site from "./components/site/Site.jsx"; +import NotFound from "./components/not_found/NotFound.jsx"; + +import "./reset.css"; +import "./index.css"; +import "@fontsource/pitagon-sans-mono"; + +function BrowserRoutes() { + return ( + + + } /> + } /> + + + ); +} + +const r = document.getElementById("root"); +const root = createRoot(r); +root.render(); -- cgit v1.2.3