From 18a2a2d045790e221b82271ddf4948a25883afe9 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Thu, 22 Jan 2026 15:09:29 +0000 Subject: [PATCH] v2 --- index.php | 471 +++++++++++++++++++++++++++++++++--------------- projects.php | 179 ++++++++++++++++++ submit_lead.php | 52 ++++++ 3 files changed, 560 insertions(+), 142 deletions(-) create mode 100644 projects.php create mode 100644 submit_lead.php diff --git a/index.php b/index.php index 7205f3d..246a30c 100644 --- a/index.php +++ b/index.php @@ -1,150 +1,337 @@ - - - - - - New Style - - - - - - - - - - - - - - - - - - - + + + + + + Impact Agency | Grow Your Digital Presence + + + + + + + + + + + + + + + + + + + + + - -
-
-

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

+ + + + + + +
+
+
+ +
+
+
+
🚀 DIGITAL FIRST AGENCY
+

+ We build brands that win. +

+

+ Helping forward-thinking companies scale their impact through strategic design, development, and marketing. +

+ +
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+
+ STRATEGYDESIGNDEVELOPMENTMARKETING • + STRATEGYDESIGNDEVELOPMENTMARKETING • + STRATEGYDESIGNDEVELOPMENTMARKETING • +
-
- + + +
+
+
+
+

Our expertise.

+
+
+

Solving complex problems with simple, elegant solutions.

+
+
+ +
+
+
+
+ +
+
+

Brand Strategy

+

Crafting unique identities that resonate with your target audience and stand the test of time.

+
+
+
+
+
+
+ +
+
+

Web Development

+

Building high-performance, responsive websites using the latest modern technologies.

+
+
+
+
+
+
+ +
+
+

Digital Growth

+

Data-driven marketing strategies to increase your visibility and convert users into customers.

+
+
+
+
+
+
+ + +
+
+
+
+

Recent projects.

+
+ +
+ +
+
+
+
+ Fintech + +
+
+

Nova Bank Redesign

+

Complete overhaul of the mobile banking experience for 1M+ users.

+ Case Study +
+
+
+
+
+
+ E-commerce + +
+
+

Lumiere Beauty

+

Scaling a luxury skincare brand's online presence and conversion rate.

+ Case Study +
+
+
+
+
+
+ + +
+
+
+
+ +

"Impact Agency transformed our digital presence. Their attention to detail and strategic approach is unmatched."

+
+
+
+

Sarah Johnson

+

CEO, TechFlow

+
+
+
+
+
+
+ + +
+
+
+
+

Ready to start?.

+

Fill out the form and we'll get back to you within 24 hours to discuss your project.

+ +
+
+ +
+
+

Email us

+ hello@impact-agency.com +
+
+ + +
+
+
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+
+
+
+
+
+
+
+ + + + + + + + - + \ No newline at end of file diff --git a/projects.php b/projects.php new file mode 100644 index 0000000..54ab310 --- /dev/null +++ b/projects.php @@ -0,0 +1,179 @@ + + + + + + + Our Projects | Impact Agency + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
PORTFOLIO
+

Selected work.

+

A collection of our recent collaborations and successful digital transformations.

+
+
+
+
+ + +
+
+
+ +
+
+
+ Fintech + +
+
+

Nova Bank Redesign

+

We completely re-imagined the user experience for Nova Bank, focusing on accessibility and seamless transactions. The result was a 40% increase in active mobile users.

+
+ UI/UX Design + React Native + Branding +
+
+
+
+ + +
+
+
+ E-commerce + +
+
+

Lumiere Beauty

+

Scaling a luxury skincare brand's online presence through a high-performance Shopify Plus implementation and a bespoke digital marketing strategy.

+
+ E-commerce + Marketing + Shopify +
+
+
+
+ + +
+
+
+ SaaS + +
+
+

CloudFlow CRM

+

Design and development of a next-generation CRM for small businesses, focusing on automation and ease of use.

+
+ SaaS Design + Web App + Next.js +
+
+
+
+ + +
+
+
+ Real Estate + +
+
+

Hearth & Home

+

A custom real estate platform that connects buyers and sellers with AI-powered matching algorithms.

+
+ Platform + AI Integration + API +
+
+
+
+
+
+
+ + +
+
+

Have a project in mind?.

+

Let's collaborate and create something extraordinary together.

+ Start a Conversation +
+
+ + + + + + + + + diff --git a/submit_lead.php b/submit_lead.php new file mode 100644 index 0000000..44a8f05 --- /dev/null +++ b/submit_lead.php @@ -0,0 +1,52 @@ + false, 'error' => 'Method not allowed']); + exit; +} + +$name = trim($_POST['name'] ?? ''); +$email = trim($_POST['email'] ?? ''); +$service = trim($_POST['service'] ?? 'General Inquiry'); +$message = trim($_POST['message'] ?? ''); + +if (empty($name) || empty($email) || empty($message)) { + echo json_encode(['success' => false, 'error' => 'Please fill in all required fields.']); + exit; +} + +if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { + echo json_encode(['success' => false, 'error' => 'Invalid email address.']); + exit; +} + +try { + $db = db(); + + // Ensure table exists + $db->query("CREATE TABLE IF NOT EXISTS leads ( + id INT AUTO_INCREMENT PRIMARY KEY, + name VARCHAR(255) NOT NULL, + email VARCHAR(255) NOT NULL, + service VARCHAR(255), + message TEXT, + status VARCHAR(50) DEFAULT 'pending', + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP + )"); + + $stmt = $db->prepare("INSERT INTO leads (name, email, service, message) VALUES (?, ?, ?, ?)"); + $stmt->execute([$name, $email, $service, $message]); + + // Send email notification (optional but recommended) + // MailService::sendContactMessage($name, $email, "New lead: $service - $message"); + + echo json_encode(['success' => true]); +} catch (Exception $e) { + error_log($e->getMessage()); + echo json_encode(['success' => false, 'error' => 'Database error. Please try again later.']); +}