20173e9042
- Added new directories for Llms and Security components under src. - Moved existing files into their respective directories for better organization. - Updated file paths in imports to reflect the new structure. - Replaced favicon.svg with a new version and updated its import path in index.html. - Created a new LogoIcon component for the favicon with customizable colors. - Added main and submenu link data files for navigation. - Removed unused favicon.svg from public directory. - Updated theme colors for a refreshed UI look.
17 lines
427 B
HTML
17 lines
427 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="src/assets/icons/favicon.svg" />
|
|
<meta
|
|
name="viewport"
|
|
content="minimum-scale=1, initial-scale=1, width=device-width, user-scalable=no"
|
|
/>
|
|
<title>FitzStudio</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|