--- import CountdownTimer from "./CountdownTimer.astro"; // Can be used in other pages to check if the user is logged in or not const user = Astro.locals.user; if(!user) { // If the user is not logged in, it will redirect to the login page Astro.redirect('/login'); } else{ // If the user is logged in, it will redirect to the admin page Astro.redirect('/admin'); } ---

Results will be announced soon

Admin Login