Add initial HTML structure and ApiService file

This commit is contained in:
Sam 2025-12-09 22:01:27 -06:00
parent 6e4f94ee96
commit b91f539479
3 changed files with 18 additions and 0 deletions

8
index.html Normal file
View File

@ -0,0 +1,8 @@
<html>
<head>
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
</head>
<body>
<h1 x-data="{ message: 'Base ONW Compsci Club Website' }" x-text="message"></h1>
</body>
</html>

10
pages/testpage.html Normal file
View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>

0
services/ApiService.js Normal file
View File