-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (46 loc) · 1.57 KB
/
index.html
File metadata and controls
54 lines (46 loc) · 1.57 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
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GTG Perfumes</title>
<link rel="stylesheet" href="./css/global.css">
</head>
<body>
<div id="root"></div>
<!-- 1. component loader -->
<script src="js/componentLoader.js"></script>
<!-- 2. logic for collection accordion -->
<script src="js/collection.js"></script>
<!-- 2. logic for product accordion -->
<script src="js/product.js"></script>
<!-- 3. logic for Stats -->
<script src="js/stats.js"></script>
<!-- 3. logic for choice -->
<script src="js/choice.js"></script>
<script>
loadComponents([
"components/hero.html",
"components/product.html",
"components/collection.html",
"components/stats.html",
"components/choice.html",
"components/footer.html"
])
.then(() => {
console.log("All components loaded!");
// init product section
if (typeof initProduct === 'function') initProduct();
// init collection accordion
if (typeof initCollection === 'function') initCollection();
// init stats
if (typeof initStats === 'function') initStats();
// init choice
if (typeof initChoice === 'function') initChoice();
})
.catch(err => {
console.error("Error loading components", err);
});
</script>
</body>
</html>