Initial commit of full project structure

This commit is contained in:
2026-01-12 18:48:54 +01:00
commit 4375f9b3e3
1017 changed files with 195594 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { useEffect } from 'react';
import { useLocation } from 'react-router-dom';
export default function ScrollToTop() {
const { pathname } = useLocation();
useEffect(() => {
window.scrollTo(0, 0);
}, [pathname]);
return null;
}