Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 23s
20 lines
635 B
HTML
20 lines
635 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 -->
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<!-- Vite will inject the correct <script> tag here during the build process -->
|
|
<script type="module" src="/src/index.tsx"></script>
|
|
</body>
|
|
</html> |