-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 2.09 KB
/
index.html
File metadata and controls
51 lines (46 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Biotech Solutions | Next-Generation Biotechnology</title>
<meta name="description" content="Biotech Solutions - Innovating the Future of Life Sciences. Genomic analysis, molecular diagnostics, drug development and bio-informatics." />
<meta name="author" content="Biotech Solutions" />
<meta name="theme-color" content="#0d9488" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/icons/icon-192.png" />
<link rel="manifest" href="/manifest.json" />
<!-- Theme initialization script to prevent flash of wrong theme -->
<script>
(function() {
try {
const stored = localStorage.getItem('theme');
const isDark = stored === 'dark';
const html = document.documentElement;
if (isDark) {
html.classList.add('dark');
html.classList.remove('light');
} else {
html.classList.add('light');
html.classList.remove('dark');
}
} catch (e) {
// Fallback to light mode if localStorage is unavailable
document.documentElement.classList.add('light');
}
})();
</script>
<meta property="og:title" content="Biotech Solutions | Next-Generation Biotechnology" />
<meta property="og:description" content="Innovating the Future of Life Sciences through cutting-edge biotechnology solutions." />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Biotech Solutions" />
<meta name="twitter:description" content="Innovating the Future of Life Sciences" />
<meta name="twitter:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>