-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (86 loc) · 3.46 KB
/
index.html
File metadata and controls
101 lines (86 loc) · 3.46 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Plastecure</title>
<link rel="icon" type="image/png" href="assets/favicon.png">
<!-- </title> -->
<link rel="stylesheet" href="welcome-style.css">
</head>
<body>
<!-- <div class="welcome-container">
<!-- Project Logo -->
<!-- <img src="logo.png" alt="Pill Cycle Logo" class="logo"> -->
<!-- Welcome Text -->
<!-- <h1 class="welcome-text">Welcome to Plastecure</h1> -->
<!-- <p class="tagline">Healing the Earth, one bottle at a time.</p> -->
<!-- Next Page Icon -->
<!-- <div class="next-page-icon"> -->
<!-- <img src="Next-Icon.svg" alt="Next" id="next-btn"> -->
<!-- </div> -->
<!-- </div> -->
<!-- Navigation Bar -->
<header>
<nav class="navbar">
<div class="brand-logo">
<a href="index.html">
<img src="assets/logo.png" alt="Plastecure Logo">
</a>
</div>
<ul class="nav-links">
<li><a href="pricing.html">Pricing</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
</ul>
</nav>
</header>
<!-- Main Section -->
<section class="landing-container">
<div class="content">
<h1>Welcome to Plastecure</h1>
<p>Healing the Earth. One bottle at a time.</p>
<button class="btn-main" onclick="window.location.href='login.html'">My Dashboard</button>
</div>
</section>
<div class="bottom-buttons">
<a href="docs.html" class="bottom-button">Docs</a>
<!-- <a href="support.html" class="bottom-button">Support</a> -->
<a href="status.html" class="bottom-button">Status</a>
</div>
<!-- In index.html
<a href="team.html">
<button class="btn team-btn">Team</button>
</a> -->
<script>
if (window.innerWidth < 768) {
alert("For the best experience, we recommend switching to desktop mode.");
}
</script>
<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/11.0.1/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/11.0.1/firebase-analytics.js";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
apiKey: "xxxxxxxxxxxxxxxxxxxxxxxxx",
authDomain: "plastecure.firebaseapp.com",
databaseURL: "https://plastecure-default-rtdb.asia-southeast1.firebasedatabase.app",
projectId: "plastecure",
storageBucket: "plastecure.firebasestorage.app",
messagingSenderId: "258042144487",
appId: "1:258042144487:web:751a5b4c3fec9739cfa442",
measurementId: "G-DK262N1263"
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
</script>
<script src="welcome.js"></script>
</body>
</html>