build logs
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled

This commit is contained in:
2026-04-24 14:59:20 +03:00
parent 579d1ad214
commit 9fbec77ac7
15 changed files with 1804 additions and 2 deletions

View File

@@ -1,6 +1,12 @@
<script setup lang="ts">
import { Link } from '@inertiajs/vue3';
import { BookOpen, FolderGit2, LayoutGrid } from 'lucide-vue-next';
import {
BookOpen,
FolderGit2,
History,
LayoutGrid,
PackagePlus,
} from 'lucide-vue-next';
import AppLogo from '@/components/AppLogo.vue';
import NavFooter from '@/components/NavFooter.vue';
import NavMain from '@/components/NavMain.vue';
@@ -15,6 +21,10 @@ import {
SidebarMenuItem,
} from '@/components/ui/sidebar';
import { dashboard } from '@/routes';
import {
history as dockerBuildHistory,
index as dockerBuilder,
} from '@/routes/docker-builder';
import type { NavItem } from '@/types';
const mainNavItems: NavItem[] = [
@@ -23,6 +33,16 @@ const mainNavItems: NavItem[] = [
href: dashboard(),
icon: LayoutGrid,
},
{
title: 'Docker builder',
href: dockerBuilder(),
icon: PackagePlus,
},
{
title: 'Build history',
href: dockerBuildHistory(),
icon: History,
},
];
const footerNavItems: NavItem[] = [