summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoderndevslulw <moderndevslulw@alright.party>2025-07-04 17:55:31 +0500
committermoderndevslulw <moderndevslulw@alright.party>2025-07-04 17:55:31 +0500
commit0ea64157c85156c4a3404fd11c6fb687f5eb613d (patch)
tree25681b52c7488e749797c71a77ab3a356ef0e297
initial commit
-rw-r--r--.gitignore1
-rw-r--r--LICENSE13
-rw-r--r--README.md3
-rw-r--r--public/index.php16
-rw-r--r--public/static/style.css4
5 files changed, 37 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4e9b47a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+config.php \ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..327a517
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,13 @@
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ Version 2, December 2004
+
+Copyright (C) 2025 moderndevsLULW <moderndevslulw@alright.party>
+
+Everyone is permitted to copy and distribute verbatim or modified
+copies of this license document, and changing it is allowed as long
+as the name is changed.
+
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. You just DO WHAT THE FUCK YOU WANT TO. \ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..9b3a8a9
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# ![](/logo.png) tinybot (www)
+
+a web frontend for the Tinybot Project. \ No newline at end of file
diff --git a/public/index.php b/public/index.php
new file mode 100644
index 0000000..ca7f117
--- /dev/null
+++ b/public/index.php
@@ -0,0 +1,16 @@
+<html>
+
+<head>
+ <title>The Tinybot Project</title>
+ <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
+ <link rel="stylesheet" href="/static/style.css">
+ <link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon">
+</head>
+
+<body>
+ <main>
+ <h1>test</h1>
+ </main>
+</body>
+
+</html> \ No newline at end of file
diff --git a/public/static/style.css b/public/static/style.css
new file mode 100644
index 0000000..a068d89
--- /dev/null
+++ b/public/static/style.css
@@ -0,0 +1,4 @@
+* {
+ padding: 0;
+ margin: 0;
+} \ No newline at end of file