initial commit. simple working hello world using capacitor framework.

This commit is contained in:
2026-04-27 09:40:11 +00:00
parent d2800f36f1
commit b58ba666ec
8 changed files with 1321 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #ffffff;
color: #1a1a1a;
}
#app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 1rem;
}
h1 {
font-size: 2rem;
}