2025-05-01 01:45:46 +02:00
|
|
|
import { BedSingle, Bell, Globe, House, MapIcon } from "lucide-vue-next";
|
2025-03-28 01:16:24 +01:00
|
|
|
import * as m from "~/paraglide/messages.js";
|
|
|
|
|
import type { SidebarConfig } from "~/types/sidebar";
|
|
|
|
|
|
|
|
|
|
export const sidebarConfig: SidebarConfig = {
|
2025-05-01 01:45:46 +02:00
|
|
|
navMain: [],
|
2025-03-28 01:16:24 +01:00
|
|
|
other: [
|
|
|
|
|
{
|
|
|
|
|
title: m.bland_chunky_sparrow_propel(),
|
|
|
|
|
url: "/home",
|
|
|
|
|
icon: House,
|
|
|
|
|
requiresLogin: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: m.lost_trick_dog_grace(),
|
|
|
|
|
url: "/public",
|
|
|
|
|
icon: MapIcon,
|
|
|
|
|
requiresLogin: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: m.crazy_game_parrot_pave(),
|
|
|
|
|
url: "/local",
|
|
|
|
|
icon: BedSingle,
|
|
|
|
|
requiresLogin: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: m.real_tame_moose_greet(),
|
|
|
|
|
url: "/global",
|
|
|
|
|
icon: Globe,
|
|
|
|
|
requiresLogin: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: m.that_patchy_mare_snip(),
|
|
|
|
|
url: "/notifications",
|
|
|
|
|
icon: Bell,
|
|
|
|
|
requiresLogin: true,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|