forked from hoangsonww/WeatherMate-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
microfrontend-layout.html
40 lines (32 loc) · 1.05 KB
/
microfrontend-layout.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WeatherMate App</title>
<link rel="stylesheet" href="global-styles.css">
</head>
<body>
<header id="header-container">
<!-- Header Microfrontend -->
</header>
<nav id="navigation-container">
<!-- Navigation Microfrontend -->
</nav>
<main id="main-container">
<!-- Main content Microfrontends (like search, weather display) -->
</main>
<aside id="sidebar-container">
<!-- Sidebar Microfrontend (like favorites list) -->
</aside>
<footer id="footer-container">
<!-- Footer Microfrontend -->
</footer>
<!-- Microfrontend JavaScript scripts -->
<script src="header-microfrontend.js"></script>
<script src="navigation-microfrontend.js"></script>
<script src="main-content-microfrontend.js"></script>
<script src="sidebar-microfrontend.js"></script>
<script src="footer-microfrontend.js"></script>
</body>
</html>