From 2e5eb487f7966c09e79df99a8ddc017f8caf5518 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Fri, 7 Nov 2025 16:45:33 +0000 Subject: [PATCH] Create Corp - Schedule Consultation sub-page cgen-924a23d6b0fc41b59b8b1d539ee0c460 --- client/pages/corp/CorpContactUs.tsx | 144 ++++++++++++++++++ .../pages/corp/CorpScheduleConsultation.tsx | 144 ++++++++++++++++++ client/pages/corp/CorpViewCaseStudies.tsx | 144 ++++++++++++++++++ 3 files changed, 432 insertions(+) create mode 100644 client/pages/corp/CorpContactUs.tsx create mode 100644 client/pages/corp/CorpScheduleConsultation.tsx create mode 100644 client/pages/corp/CorpViewCaseStudies.tsx diff --git a/client/pages/corp/CorpContactUs.tsx b/client/pages/corp/CorpContactUs.tsx new file mode 100644 index 00000000..767547a1 --- /dev/null +++ b/client/pages/corp/CorpContactUs.tsx @@ -0,0 +1,144 @@ +import Layout from "@/components/Layout"; +import { Button } from "@/components/ui/button"; +import { Badge } from "@/components/ui/badge"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Mail, Phone, MapPin, MessageSquare } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +export default function CorpContactUs() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated grid background */} +
+
+
+
+
+ +
+ {/* Hero Section */} +
+
+
+ + + + + Contact Us + + +

+ Get in Touch +

+ +

+ Reach out to our team. We're here to answer your questions and + discuss how we can help your business. +

+ +
+ + +
+
+
+
+ + {/* Contact Methods */} +
+
+

+ Contact Methods +

+
+ + + + Email + + +

+ Send us an email at{" "} + + contact@aethex.corp + +

+
+
+ + + + + Phone + + +

+ Call us at{" "} + + (346) 556-7100 + +

+
+
+ + + + + Office + + +

+ Queen Creek, Arizona +

+
+
+ + + + + Live Chat + + +

+ Chat with our team in real-time for quick support +

+
+
+
+
+
+
+
+ + ); +} diff --git a/client/pages/corp/CorpScheduleConsultation.tsx b/client/pages/corp/CorpScheduleConsultation.tsx new file mode 100644 index 00000000..02f319cb --- /dev/null +++ b/client/pages/corp/CorpScheduleConsultation.tsx @@ -0,0 +1,144 @@ +import Layout from "@/components/Layout"; +import { Button } from "@/components/ui/button"; +import { Badge } from "@/components/ui/badge"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Briefcase, Calendar, Clock, Users } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +export default function CorpScheduleConsultation() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated grid background */} +
+
+
+
+
+ +
+ {/* Hero Section */} +
+
+
+ + + + + Schedule Consultation + + +

+ Let's Talk Strategy +

+ +

+ Book a consultation with our experts to discuss your digital + transformation goals and how we can help. +

+ +
+ + +
+
+
+
+ + {/* Consultation Types */} +
+
+

+ Consultation Options +

+
+ + + + + 30 Min Quick Sync + + + +

+ A focused discussion to understand your challenges and + explore potential solutions. +

+
+
+ + + + + + 1 Hour Strategy Session + + + +

+ In-depth consultation to develop a strategic roadmap for + your digital goals. +

+
+
+ + + + + + Team Workshop + + + +

+ Collaborative session with your team to identify + opportunities and align strategy. +

+
+
+ + + + + + Discovery Engagement + + + +

+ Comprehensive assessment of your current state and + transformation priorities. +

+
+
+
+
+
+
+
+ + ); +} diff --git a/client/pages/corp/CorpViewCaseStudies.tsx b/client/pages/corp/CorpViewCaseStudies.tsx new file mode 100644 index 00000000..53c7dcf0 --- /dev/null +++ b/client/pages/corp/CorpViewCaseStudies.tsx @@ -0,0 +1,144 @@ +import Layout from "@/components/Layout"; +import { Button } from "@/components/ui/button"; +import { Badge } from "@/components/ui/badge"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Award, TrendingUp, Target, CheckCircle } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +export default function CorpViewCaseStudies() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated grid background */} +
+
+
+
+
+ +
+ {/* Hero Section */} +
+
+
+ + + + + Case Studies + + +

+ Success Stories +

+ +

+ See how enterprises transformed their operations and achieved + remarkable results with our solutions. +

+ +
+ + +
+
+
+
+ + {/* Case Studies Grid */} +
+
+

+ Featured Case Studies +

+
+ + + + + 50% Revenue Growth + + + +

+ Enterprise client achieved significant revenue growth through + digital transformation. +

+
+
+ + + + + + 60% Cost Reduction + + + +

+ Optimized operations and reduced overhead through strategic + consulting. +

+
+
+ + + + + + 3x Time to Market + + + +

+ Accelerated product launches through process optimization + and automation. +

+
+
+ + + + + + Industry Awards + + + +

+ Recognized solutions that won industry awards for + innovation and impact. +

+
+
+
+
+
+
+
+ + ); +}