From dd6845856c8a3250d8f6ac172069b3d1f0d84d69 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Sat, 22 Nov 2025 13:26:41 +0000 Subject: [PATCH] n7 --- assets/css/custom.css | 69 +++++++++++ assets/js/main.js | 6 + index.php | 260 +++++++++++++++++++----------------------- 3 files changed, 194 insertions(+), 141 deletions(-) create mode 100644 assets/css/custom.css create mode 100644 assets/js/main.js diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..e8648d3 --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,69 @@ + +/* CashTask Custom Styles */ +@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); + +body { + font-family: 'Inter', sans-serif; + background-color: #f8f9fa; + color: #343a40; +} + +.navbar-brand { + font-weight: 700; + color: #14b8a6 !important; +} + +.btn-primary { + background-color: #14b8a6; + border-color: #14b8a6; + font-weight: 600; + padding: 0.75rem 1.5rem; + border-radius: 0.75rem; + transition: all 0.3s ease; +} + +.btn-primary:hover { + background-color: #109686; + border-color: #109686; + transform: translateY(-2px); + box-shadow: 0 4px 12px rgba(0,0,0,0.1); +} + +.task-card { + background-color: #ffffff; + border: none; + border-radius: 0.75rem; + box-shadow: 0 4px 12px rgba(0,0,0,0.05); + transition: all 0.3s ease; + height: 100%; +} + +.task-card:hover { + transform: translateY(-5px); + box-shadow: 0 8px 20px rgba(0,0,0,0.08); +} + +.task-card .card-body { + padding: 1.5rem; +} + +.task-card .card-title { + font-weight: 600; + color: #343a40; +} + +.task-card .card-subtitle { + color: #6c757d; +} + +.task-payout { + font-size: 1.5rem; + font-weight: 700; + color: #14b8a6; +} + +.footer { + padding: 2rem 0; + font-size: 0.9rem; + color: #6c757d; +} diff --git a/assets/js/main.js b/assets/js/main.js new file mode 100644 index 0000000..463a64e --- /dev/null +++ b/assets/js/main.js @@ -0,0 +1,6 @@ + +// CashTask Main JS +// Future interactivity will go here. +document.addEventListener('DOMContentLoaded', function () { + console.log('CashTask UI Initialized'); +}); diff --git a/index.php b/index.php index 7205f3d..c0f48a9 100644 --- a/index.php +++ b/index.php @@ -1,150 +1,128 @@ 'Clean my 1-bedroom apartment', + 'category' => 'Cleaning', + 'location' => 'Downtown', + 'payout' => 50, + ], + [ + 'title' => 'Deliver a package across town', + 'category' => 'Delivery', + 'location' => 'North Suburbs', + 'payout' => 25, + ], + [ + 'title' => 'Assemble IKEA bookshelf', + 'category' => 'Fixing', + 'location' => 'West End', + 'payout' => 40, + ], + [ + 'title' => 'Help me move a couch', + 'category' => 'Errands', + 'location' => 'City Center', + 'payout' => 30, + ], + [ + 'title' => 'Data entry for 2 hours', + 'category' => 'Typing', + 'location' => 'Remote', + 'payout' => 35, + ], + [ + 'title' => 'Design a simple logo for my startup', + 'category' => 'Design', + 'location' => 'Remote', + 'payout' => 100, + ], +]; + +$projectName = $_SERVER['PROJECT_NAME'] ?? 'CashTask'; +$projectDesc = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Find and post simple freelance micro-jobs with small cash payouts.'; +$projectImage = $_SERVER['PROJECT_IMAGE_URL'] ?? ''; -$phpVersion = PHP_VERSION; -$now = date('Y-m-d H:i:s'); ?> - + - - - New Style - - - - - - - - - - - - - - - - - - - + + + <?php echo htmlspecialchars($projectName); ?> + + + + + + + + + + + + + + + + + -
-
-

Analyzing your requirements and generating your website…

-
- Loading… -
-

AI is collecting your requirements and applying the first changes.

-

This page will update automatically as the plan is implemented.

-

Runtime: PHP — UTC

+ + + + + +
+
+

Find Your Next Gig

+

Browse simple jobs posted by people in your community.

+
+ + +
+ +
+
+
+
+
+ · + +
+
+ $ +
+
+
+
+ +
+
+ + + -
- + + + + + + + + - + \ No newline at end of file