feat: Update routing imports in options and sidepanel App components fix: Remove unused SquarePen icon import in Header component
17 lines
585 B
HTML
17 lines
585 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Page Assist - A Web UI for Local AI Models</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="manifest.type" content="browser_action" />
|
|
<meta name="manifest.open_at_install" content="false" />
|
|
<meta name="manifest.browser_style" content="false" />
|
|
<link href="~/assets/tailwind.css" rel="stylesheet" />
|
|
<meta charset="utf-8" />
|
|
</head>
|
|
<body class="bg-white dark:bg-[#171717]">
|
|
<div id="root"></div>
|
|
<script type="module" src="./main.tsx"></script>
|
|
</body>
|
|
</html>
|