Add visit count functionality to Navbar and Log page

This commit is contained in:
Sean Morley
2024-04-10 17:47:20 +00:00
parent ae5e77f670
commit bc0e1b4db2
5 changed files with 59 additions and 7 deletions

View File

@@ -1,3 +1,5 @@
import { writable } from "svelte/store";
export const visitCount = writable(0);
let value = 0;
export const visitCount = writable(value);