mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 23:05:05 +00:00
- Added site settings management with a dedicated UI for configuration. - Introduced new onboarding steps for site branding, including site name, title, and description. - Updated API endpoints for site settings retrieval and updates. - Enhanced the onboarding wizard to include site settings integration. - Refactored related components and hooks for better state management and validation. Signed-off-by: Innei <tukon479@gmail.com>
16 lines
462 B
HTML
16 lines
462 B
HTML
<!doctype html>
|
|
<html lang="en" data-theme="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="description" content="Afilmory Dashboard for managing your gallery" />
|
|
<meta name="favicon" content="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Afilmory Dashboard</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|