forked from GRAPHQUON/graphquon.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterms.html
38 lines (28 loc) · 1.09 KB
/
terms.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GraphQUON 2024 at ETS - Terms of Service</title>
<!-- TailwindCSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png">
<!-- LitElement CDN -->
<script type="module" src="https://unpkg.com/lit@2.2.7?module"></script>
<!-- TermsOfServiceETS Component -->
<script type="module" src="./components/sections/terms/terms.js"></script>
</head>
<body class="bg-gray-100 text-gray-800">
<!-- Main content -->
<main class="container mx-auto px-4 py-8">
<terms-of-service-ets></terms-of-service-ets> <!-- Use the updated Terms of Service component -->
</main>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-4">
<div class="container mx-auto text-center">
<p>© 2024 GraphQUON | All rights reserved.</p>
</div>
</footer>
</body>
</html>