- Move logo to marketplace/src/assets/ - Apply logo in Shell.tsx header - Add favicon and meta tags to index.html - Create docs/database-schema.md with ER diagram - Update README.md with database section - Update marketplace/README.md with assets section - Update seeder-api/README.md with new fields
14 lines
545 B
HTML
14 lines
545 B
HTML
<!doctype html>
|
|
<html lang="pt-BR">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/src/assets/logo.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="SaveInMed - Marketplace B2B Farmacêutico. Conectando farmácias e distribuidoras." />
|
|
<title>SaveInMed - Marketplace Farmacêutico B2B</title>
|
|
</head>
|
|
<body class="bg-gray-100">
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|