Added base code

This commit is contained in:
CodingPhoenixx
2026-02-12 14:06:41 +01:00
parent 4678963a22
commit a62ce26bfa
9 changed files with 144 additions and 158 deletions
+12
View File
@@ -0,0 +1,12 @@
import { LitElement, html } from 'lit';
import { customElement } from 'lit/decorators.js';
@customElement('home-page')
export class HomePage extends LitElement {
render() {
return html`
<h1>Welcome to the Balloon Tracker</h1>
<p>Analyze your tracks visually.</p>
`;
}
}