fix: Colors

This commit is contained in:
Wanjohi
2025-03-03 23:36:18 +03:00
parent c994dc112c
commit 1e78238593
4 changed files with 311 additions and 270 deletions

View File

@@ -14,6 +14,7 @@ import { AuthProvider, useAuth } from './providers/auth';
import { Navigate, Route, Router } from "@solidjs/router";
import { globalStyle, macaron$ } from "@macaron-css/core";
import { Component, createSignal, Match, onCleanup, Switch } from 'solid-js';
import TestComponent from './pages/test';
const Root = styled("div", {
base: {
@@ -87,12 +88,14 @@ export const App: Component = () => {
<Route
path="*"
component={(props) => (
<AuthProvider>
{props.children}
</AuthProvider>
// <AuthProvider>
// {props.children}
props.children
// </AuthProvider>
)}
>
<Route path="play/:id" component={PlayComponent} />
<Route path="test" component={TestComponent} />
<Route
path="/"
component={() => {