import { type RouteConfig, index, route } from "@react-router/dev/routes";

export default [
  index("routes/home.tsx"),
  route("login", "routes/login.tsx"),
  route("users", "routes/users.tsx"),
  route("users/:userId", "routes/user-detail.tsx"),
  route("servers", "routes/servers.tsx"),
  route("subscriptions", "routes/subscriptions.tsx"),
  route("tickets", "routes/tickets.tsx"),
  route("financial", "routes/financial.tsx"),
  route("notifications", "routes/notifications.tsx"),
  route("analytics", "routes/analytics.tsx"),
  route("coupons", "routes/coupons.tsx"),
  route("settings", "routes/settings.tsx"),
  route("admin-settings", "routes/admin-settings.tsx"),
  route("server-config", "routes/server-config.tsx"),
] satisfies RouteConfig;
