Deploy to GitHub pages

This commit is contained in:
github-actions[bot]
2026-03-15 17:17:20 +00:00
committed by GitHub
commit 65b84a5bf3
4 changed files with 21 additions and 0 deletions

0
.nojekyll Normal file
View File

2
app.css Normal file

File diff suppressed because one or more lines are too long

1
app.js Normal file
View File

@@ -0,0 +1 @@
(function(){let e=document.createElement(`link`).relList;if(e&&e.supports&&e.supports(`modulepreload`))return;for(let e of document.querySelectorAll(`link[rel="modulepreload"]`))n(e);new MutationObserver(e=>{for(let t of e)if(t.type===`childList`)for(let e of t.addedNodes)e.tagName===`LINK`&&e.rel===`modulepreload`&&n(e)}).observe(document,{childList:!0,subtree:!0});function t(e){let t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),e.crossOrigin===`use-credentials`?t.credentials=`include`:e.crossOrigin===`anonymous`?t.credentials=`omit`:t.credentials=`same-origin`,t}function n(e){if(e.ep)return;e.ep=!0;let n=t(e);fetch(e.href,n)}})(),document.addEventListener(`DOMContentLoaded`,()=>{let e=document.querySelector(`h1`),t=window.location.hostname||document.title;e.textContent=t,document.title=t});

18
index.html Normal file
View File

@@ -0,0 +1,18 @@
<!doctype html>
<html lang="en">
<head>
<title>hi there!</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="module" crossorigin src="./app.js"></script>
<link rel="stylesheet" crossorigin href="./app.css">
</head>
<body class="h-screen bg-gray-50">
<div class="flex items-center justify-between h-screen px-8 py-16 mx-auto min-w-max max-w-7xl">
<h1 class="text-3xl font-extrabold tracking-tight text-gray-900">hi there!</h1>
</div>
</body>
</html>