-
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) ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
🚀 DIGITAL FIRST AGENCY
+
+ We build brands that win .
+
+
+ Helping forward-thinking companies scale their impact through strategic design, development, and marketing.
+
+
+
+
+
+
+
+
+
+
+
+ STRATEGY • DESIGN • DEVELOPMENT • MARKETING •
+ STRATEGY • DESIGN • DEVELOPMENT • MARKETING •
+ STRATEGY • DESIGN • DEVELOPMENT • MARKETING •
+
-
-
- Page updated: = htmlspecialchars($now) ?> (UTC)
-
+
+
+
+
+
+
+
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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
IMPACT.
+
© = date('Y') ?> Impact Agency. All rights reserved.
+
+
+
+
+
+
+
+
+
+
-
+
\ 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
+
+
+
+
+
+
+
+
+
IMPACT.
+
© = date('Y') ?> Impact Agency. All rights reserved.
+
+
+
+
+
+
+
+
+
+
+
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.']);
+}