You've already forked AstralRinth
forked from didirus/AstralRinth
Replaced all icon usages of `apps/frontend/src/assets/image/utils` for `@modrinth/assets`. The only icon which has been changed is the `WorldIcon`, which has been replaced by the `GlobeIcon`.
34 lines
975 B
Vue
34 lines
975 B
Vue
<template>
|
|
<div class="normal-page">
|
|
<div class="normal-page__sidebar">
|
|
<aside class="universal-card">
|
|
<h1>Moderation</h1>
|
|
<NavStack>
|
|
<NavStackItem link="/moderation" label="Overview">
|
|
<ModrinthIcon aria-hidden="true" />
|
|
</NavStackItem>
|
|
<NavStackItem link="/moderation/review" label="Review projects">
|
|
<ScaleIcon aria-hidden="true" />
|
|
</NavStackItem>
|
|
<NavStackItem link="/moderation/reports" label="Reports">
|
|
<ReportIcon aria-hidden="true" />
|
|
</NavStackItem>
|
|
</NavStack>
|
|
</aside>
|
|
</div>
|
|
<div class="normal-page__content">
|
|
<NuxtPage />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ModrinthIcon, ScaleIcon, ReportIcon } from "@modrinth/assets";
|
|
import NavStack from "~/components/ui/NavStack.vue";
|
|
import NavStackItem from "~/components/ui/NavStackItem.vue";
|
|
|
|
definePageMeta({
|
|
middleware: "auth",
|
|
});
|
|
</script>
|