Files
flyer-crawler.projectium.com/index.html
Torben Sorensen 95c50bfeff
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 21s
post-deploy fixins
2025-11-10 11:52:53 -08:00

24 lines
874 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grocery Flyer AI Analyzer</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
</style>
<!-- The stylesheet will be injected here by Vite during the build process -->
<!-- PDF.js Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/4.5.136/pdf.min.mjs" type="module"></script>
<!-- We link to the CSS entry point. Vite will process this. -->
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="root"></div>
<!-- Vite will inject the correct <script> tag here during the build process -->
<script type="module" src="/index.tsx"></script>
</body>
</html>