commit f7e4f1404e204b4c28ae51e620bd6e92403a0e4c Author: wsc-admin Date: Thu Apr 2 19:35:57 2026 +0900 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..496ee2c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..64b8f46 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Vanilla JS App + +Static files only. No Docker, no build step, no CI/CD. \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..758a1f7 --- /dev/null +++ b/index.html @@ -0,0 +1,14 @@ + + + + + + Vanilla JS App + + + +

Hello Vanilla JS!

+

Edit files directly. No build step required.

+ + + \ No newline at end of file diff --git a/main.js b/main.js new file mode 100644 index 0000000..f6bd030 --- /dev/null +++ b/main.js @@ -0,0 +1 @@ +console.log('Hello from Vanilla JS App!') \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..218ab2e --- /dev/null +++ b/style.css @@ -0,0 +1,10 @@ +body { + font-family: system-ui, sans-serif; + margin: 0; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + min-height: 100vh; +} +h1 { color: #333; } \ No newline at end of file