From f7e4f1404e204b4c28ae51e620bd6e92403a0e4c Mon Sep 17 00:00:00 2001 From: wsc-admin Date: Thu, 2 Apr 2026 19:35:57 +0900 Subject: [PATCH] Initial commit --- .gitignore | 1 + README.md | 3 +++ index.html | 14 ++++++++++++++ main.js | 1 + style.css | 10 ++++++++++ 5 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 index.html create mode 100644 main.js create mode 100644 style.css 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