refactor: remove unused page hero components

This commit is contained in:
Matthieu
2025-09-18 08:54:33 +02:00
parent a8fab0d718
commit 87cd5e8b2a
8 changed files with 8 additions and 65 deletions

View File

@@ -1,11 +1,6 @@
<template>
<main class="container mx-auto px-6 py-8 space-y-8">
<PageHero
title="Générateur de Types"
subtitle="Créez rapidement un nouveau type de machine avec sa structure complète."
min-height="min-h-[18vh]"
max-width="max-w-md"
/>
<div class="card bg-base-100 shadow-xl">
<div class="card-body space-y-6">
@@ -85,7 +80,6 @@
import { ref, computed, onMounted } from 'vue'
import { useMachineTypesApi } from '~/composables/useMachineTypesApi'
import { useToast } from '~/composables/useToast'
import PageHero from '~/components/PageHero.vue'
const { machineTypes, loadMachineTypes, createMachineType } = useMachineTypesApi()
const { showError } = useToast()