second round of review

This commit is contained in:
counterweight 2025-12-18 22:31:19 +01:00
parent da5a0d03eb
commit ca55932a41
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
10 changed files with 124 additions and 229 deletions

View file

@ -3,8 +3,7 @@
import { useEffect, useState } from "react";
import { useRouter } from "next/navigation";
import { useAuth } from "./auth-context";
const API_URL = process.env.NEXT_PUBLIC_API_URL || "http://localhost:8000";
import { API_URL } from "./config";
export default function Home() {
const [count, setCount] = useState<number | null>(null);