front end updates

This commit is contained in:
Simon Pocrnjič
2025-10-14 21:00:26 +02:00
parent 79b3e20b02
commit ddfc79ffe8
5 changed files with 338 additions and 224 deletions
+24 -1
View File
@@ -2,7 +2,7 @@
import AdminLayout from '@/Layouts/AdminLayout.vue'
import { Link } from '@inertiajs/vue3'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
import { faUserGroup, faKey, faGears, faFileWord } from '@fortawesome/free-solid-svg-icons'
import { faUserGroup, faKey, faGears, faFileWord, faEnvelopeOpenText, faInbox, faAt } from '@fortawesome/free-solid-svg-icons'
const cards = [
{
@@ -39,6 +39,29 @@ const cards = [
},
],
},
{
category: 'Email',
items: [
{
title: 'Email predloge',
description: 'Upravljanje HTML / tekst email predlog',
route: 'admin.email-templates.index',
icon: faEnvelopeOpenText,
},
{
title: 'Email dnevniki',
description: 'Pregled poslanih emailov in statusov',
route: 'admin.email-logs.index',
icon: faInbox,
},
{
title: 'Mail profili',
description: 'SMTP profili, nastavitve in testiranje povezave',
route: 'admin.mail-profiles.index',
icon: faAt,
},
],
},
]
</script>