diff --git a/assets/css/custom.css b/assets/css/custom.css
new file mode 100644
index 0000000..4739d34
--- /dev/null
+++ b/assets/css/custom.css
@@ -0,0 +1,52 @@
+
+body {
+ font-family: 'Roboto', sans-serif;
+ background: linear-gradient(135deg, #F5F7FA 0%, #E0E3E8 100%);
+ color: #1A237E;
+}
+
+.module-list-container {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ padding: 4rem 2rem;
+}
+
+.module-column {
+ width: 300px;
+}
+
+.module-column h3 {
+ font-size: 1.2rem;
+ font-weight: 500;
+ margin-bottom: 1.5rem;
+ text-align: center;
+}
+
+.module-list {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+}
+
+.module-item {
+ background-color: #FFFFFF;
+ border-radius: 0.5rem;
+ padding: 1rem 1.5rem;
+ margin-bottom: 1rem;
+ text-align: center;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
+ transition: all 0.2s ease-in-out;
+}
+
+.module-item a {
+ text-decoration: none;
+ color: #1A237E;
+ font-weight: 500;
+ display: block;
+}
+
+.module-item:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 7px 14px rgba(0, 0, 0, 0.07);
+}
diff --git a/assets/js/main.js b/assets/js/main.js
new file mode 100644
index 0000000..436b512
--- /dev/null
+++ b/assets/js/main.js
@@ -0,0 +1,3 @@
+
+// No JS needed for this simple implementation yet.
+// Hover effects are handled by CSS.
diff --git a/index.php b/index.php
index 7205f3d..7c683d6 100644
--- a/index.php
+++ b/index.php
@@ -4,18 +4,34 @@ declare(strict_types=1);
@error_reporting(E_ALL);
@date_default_timezone_set('UTC');
-$phpVersion = PHP_VERSION;
-$now = date('Y-m-d H:i:s');
+$leftColumn = [
+ 'Project Controls',
+ 'ProjectMap Timelines',
+ 'Timeline for Monday.com',
+ 'Task Management',
+ 'Plan vs. Actual',
+ 'Risk Assessment',
+];
+
+$rightColumn = [
+ 'Agentic AI',
+ 'Workstream Structure',
+ 'Timeline for Jira',
+ 'Portfolio Execution',
+ 'Resource Management',
+ 'Dashboards',
+];
+
?>
- New Style
+ Project Management UI
@@ -34,117 +50,28 @@ $projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
-
-
+
+
-
-
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) ?>
+
-
+