Application Laravel 12 + Inertia + Vue 3 + Tailwind. Fonctionnalités : dashboard glycémique, saisie de mesures, courbe SVG, statistiques (jour/semaine/mois/trimestre), défis & badges, chat coach IA (Gemini), paramètres profil avec palette de couleurs, pages auth redessinées, emails transactionnels via Resend avec thème Diabetix. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
880 B
PHP
21 lines
880 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title inertia>{{ config('app.name', 'Diabetix') }}</title>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Lora:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
@routes
|
|
@vite(['resources/js/app.js', "resources/js/Pages/{$page['component']}.vue"])
|
|
@inertiaHead
|
|
</head>
|
|
<body style="background:#eeece8;font-family:'Plus Jakarta Sans',sans-serif;-webkit-font-smoothing:antialiased;margin:0;">
|
|
@inertia
|
|
</body>
|
|
</html>
|