---
import TextSlider from "../components/TextSlider.astro";
import Separator from "../components/Separator.astro";
// Get the current pathname
const currentPath = Astro.url.pathname;
// Define a map of routes
const routes = {
"/": "Home",
"/releases/": "Releases",
"/store/": "Store",
"/history/": "History",
"/contact/": "Contact",
};
// Determine the active route
const activeRoute = routes[currentPath] || null;
---