feat: add tor service and style

feat: add tor service
This commit is contained in:
Jet 2026-03-18 13:30:29 -07:00
parent f48390b15e
commit 7b842b3342
No known key found for this signature in database
12 changed files with 203 additions and 24 deletions

View file

@ -2,14 +2,10 @@ import "~/styles/globals.css";
import init, { start } from "cgol";
import { route, initRouter } from "~/router";
import { homePage } from "~/pages/home";
import { projectsPage } from "~/pages/projects";
import { projectPage } from "~/pages/project";
import { qaPage } from "~/pages/qa";
import { notFoundPage } from "~/pages/not-found";
route("/", homePage);
route("/projects", projectsPage);
route("/projects/:slug", projectPage);
route("/qa", qaPage);
route("*", notFoundPage);