diff --git a/assets/css/custom.css b/assets/css/custom.css
new file mode 100644
index 0000000..30b5d3a
--- /dev/null
+++ b/assets/css/custom.css
@@ -0,0 +1,55 @@
+body {
+ background-color: #FFFFFF;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
+}
+
+.search-container {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 80vh;
+ flex-direction: column;
+}
+
+.search-box {
+ width: 50%;
+ padding: 1rem;
+ border: 1px solid #dfe1e5;
+ border-radius: 24px;
+ font-size: 1.2rem;
+ outline: none;
+ transition: box-shadow 0.3s;
+}
+
+.search-box:hover, .search-box:focus {
+ box-shadow: 0 1px 6px rgba(32,33,36,0.28);
+ border-color: rgba(223,225,229,0);
+}
+
+.search-buttons {
+ margin-top: 1.5rem;
+}
+
+.search-buttons button {
+ background-color: #f8f9fa;
+ border: 1px solid #f8f9fa;
+ border-radius: 4px;
+ color: #3c4043;
+ font-family: arial,sans-serif;
+ font-size: 14px;
+ margin: 11px 4px;
+ padding: 0 16px;
+ line-height: 27px;
+ height: 36px;
+ min-width: 54px;
+ text-align: center;
+ cursor: pointer;
+ user-select: none;
+}
+
+.search-buttons button:hover {
+ box-shadow: 0 1px 1px rgba(0,0,0,0.1);
+ background-color: #f8f9fa;
+ border: 1px solid #dadce0;
+ color: #202124;
+}
diff --git a/assets/js/main.js b/assets/js/main.js
new file mode 100644
index 0000000..6d5f9a6
--- /dev/null
+++ b/assets/js/main.js
@@ -0,0 +1,22 @@
+document.addEventListener('DOMContentLoaded', function () {
+ const searchInput = document.querySelector('.search-box');
+ const searchButtons = document.querySelectorAll('.search-buttons button');
+
+ searchInput.addEventListener('keypress', function (e) {
+ if (e.key === 'Enter') {
+ const query = searchInput.value;
+ if (query) {
+ window.location.href = `search.php?q=${encodeURIComponent(query)}`;
+ }
+ }
+ });
+
+ searchButtons.forEach(button => {
+ button.addEventListener('click', () => {
+ const query = searchInput.value;
+ if (query) {
+ window.location.href = `search.php?q=${encodeURIComponent(query)}`;
+ }
+ });
+ });
+});
diff --git a/index.php b/index.php
index 7205f3d..0530f34 100644
--- a/index.php
+++ b/index.php
@@ -1,150 +1,29 @@
-
-
+
-
-
- New Style
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ WWR
+
+
+
+
+
+
+
+
+
-
-
-
Analyzing your requirements and generating your website…
-
- Loading…
-
-
= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.
-
This page will update automatically as the plan is implemented.
-
Runtime: PHP = htmlspecialchars($phpVersion) ?> — UTC = htmlspecialchars($now) ?>
+
-
-
+
-
+