2024-03-23 14:44:05 +05:30
|
|
|
<!doctype html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2024-03-24 12:43:43 +05:30
|
|
|
<title>Page Assist - A Web UI for Local AI Models</title>
|
2024-03-23 14:44:05 +05:30
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<meta name="manifest.type" content="browser_action" />
|
2024-05-11 19:32:36 +05:30
|
|
|
<meta name="manifest.open_at_install" content="false" />
|
2024-05-16 11:32:31 +05:30
|
|
|
<meta name="manifest.browser_style" content="false" />
|
2024-03-23 14:44:05 +05:30
|
|
|
<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>
|