design mockups
All checks were successful
Build And Push Image / docker (push) Successful in 2m3s

This commit is contained in:
2025-09-03 22:15:26 +02:00
parent 4d24315103
commit e949df311b
11 changed files with 2866 additions and 3 deletions

View File

@@ -193,9 +193,15 @@
import { ref, onMounted } from 'vue';
import NeumorphicCard from '../../components/core/NeumorphicCard.vue';
import ProfessionalButton from '../../components/core/ProfessionalButton.vue';
import StatCard from '../../components/data/StatCard.vue';
import StatCard from '../../components/core/StatCard.vue';
import Chart from 'chart.js/auto';
// Disable authentication for mockup
definePageMeta({
auth: false,
layout: false
});
// Icons (simplified for demo)
const HomeIcon = { template: '<svg fill="currentColor" viewBox="0 0 20 20"><path d="M10.707 2.293a1 1 0 00-1.414 0l-7 7a1 1 0 001.414 1.414L4 10.414V17a1 1 0 001 1h2a1 1 0 001-1v-2a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 001 1h2a1 1 0 001-1v-6.586l.293.293a1 1 0 001.414-1.414l-7-7z"/></svg>' };
const UsersIcon = { template: '<svg fill="currentColor" viewBox="0 0 20 20"><path d="M9 6a3 3 0 11-6 0 3 3 0 016 0zM17 6a3 3 0 11-6 0 3 3 0 016 0zM12.93 17c.046-.327.07-.66.07-1a6.97 6.97 0 00-1.5-4.33A5 5 0 0119 16v1h-6.07zM6 11a5 5 0 015 5v1H1v-1a5 5 0 015-5z"/></svg>' };

View File

@@ -121,6 +121,12 @@ import { ref } from 'vue';
import NeumorphicCard from '../../components/core/NeumorphicCard.vue';
import ProfessionalButton from '../../components/core/ProfessionalButton.vue';
// Disable authentication for mockup
definePageMeta({
auth: false,
layout: false
});
// Data
const credentials = ref({
email: '',

View File

@@ -284,6 +284,12 @@ import NeumorphicCard from '../../components/core/NeumorphicCard.vue';
import ProfessionalButton from '../../components/core/ProfessionalButton.vue';
import StatCard from '../../components/core/StatCard.vue';
// Disable authentication for mockup
definePageMeta({
auth: false,
layout: false
});
// Data
const sidebarCollapsed = ref(false);
const currentDate = ref(new Date().toLocaleDateString('en-US', { month: 'short', day: 'numeric', year: 'numeric' }));

View File

@@ -330,6 +330,12 @@ import NeumorphicCard from '../../components/core/NeumorphicCard.vue';
import ProfessionalButton from '../../components/core/ProfessionalButton.vue';
import StatCard from '../../components/core/StatCard.vue';
// Disable authentication for mockup
definePageMeta({
auth: false,
layout: false
});
// Data
const mobileMenuOpen = ref(false);
const profileMenuOpen = ref(false);