Create Corp - Schedule Consultation sub-page
cgen-924a23d6b0fc41b59b8b1d539ee0c460
This commit is contained in:
parent
df49291fbc
commit
2e5eb487f7
3 changed files with 432 additions and 0 deletions
144
client/pages/corp/CorpContactUs.tsx
Normal file
144
client/pages/corp/CorpContactUs.tsx
Normal file
|
|
@ -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 (
|
||||
<Layout>
|
||||
<div className="relative min-h-screen bg-black text-white overflow-hidden">
|
||||
{/* Animated grid background */}
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.12] [background-image:radial-gradient(circle_at_top,#3b82f6_0,rgba(0,0,0,0.45)_55%,rgba(0,0,0,0.9)_100%)]" />
|
||||
<div className="pointer-events-none absolute inset-0 bg-[linear-gradient(transparent_0,transparent_calc(100%-1px),rgba(59,130,246,0.05)_calc(100%-1px))] bg-[length:100%_32px]" />
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.08] [background-image:linear-gradient(90deg,rgba(59,130,246,0.1)_1px,transparent_1px),linear-gradient(0deg,rgba(59,130,246,0.1)_1px,transparent_1px)] [background-size:50px_50px] animate-pulse" />
|
||||
<div className="pointer-events-none absolute top-20 left-10 w-72 h-72 bg-blue-500/20 rounded-full blur-3xl animate-blob" />
|
||||
<div className="pointer-events-none absolute bottom-20 right-10 w-72 h-72 bg-blue-600/10 rounded-full blur-3xl animate-blob animation-delay-2000" />
|
||||
|
||||
<main className="relative z-10">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-6xl px-4 text-center">
|
||||
<div className="mx-auto flex max-w-3xl flex-col items-center gap-8">
|
||||
<Button
|
||||
variant="ghost"
|
||||
className="text-blue-300 hover:bg-blue-500/10"
|
||||
onClick={() => navigate("/corp")}
|
||||
>
|
||||
← Back to Corp
|
||||
</Button>
|
||||
|
||||
<Badge
|
||||
variant="outline"
|
||||
className="border-blue-400/40 bg-blue-500/10 text-blue-300 shadow-[0_0_20px_rgba(59,130,246,0.2)]"
|
||||
>
|
||||
<Mail className="h-5 w-5 mr-2" />
|
||||
Contact Us
|
||||
</Badge>
|
||||
|
||||
<h1 className="text-4xl font-black tracking-tight text-blue-300 sm:text-5xl lg:text-6xl">
|
||||
Get in Touch
|
||||
</h1>
|
||||
|
||||
<p className="text-lg text-blue-100/90 sm:text-xl">
|
||||
Reach out to our team. We're here to answer your questions and
|
||||
discuss how we can help your business.
|
||||
</p>
|
||||
|
||||
<div className="flex flex-col gap-4 sm:flex-row">
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-blue-400 text-black shadow-[0_0_30px_rgba(59,130,246,0.35)] transition hover:bg-blue-300"
|
||||
>
|
||||
<MessageSquare className="mr-2 h-5 w-5" />
|
||||
Send Message
|
||||
</Button>
|
||||
<Button
|
||||
size="lg"
|
||||
variant="outline"
|
||||
className="border-blue-400/60 text-blue-300 hover:bg-blue-500/10"
|
||||
>
|
||||
View Office Locations
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Contact Methods */}
|
||||
<section className="border-y border-blue-400/10 bg-black/80 py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<h2 className="text-3xl font-bold text-blue-300 mb-8">
|
||||
Contact Methods
|
||||
</h2>
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Mail className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">Email</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Send us an email at{" "}
|
||||
<a
|
||||
href="mailto:contact@aethex.corp"
|
||||
className="text-blue-400 hover:text-blue-300"
|
||||
>
|
||||
contact@aethex.corp
|
||||
</a>
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Phone className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">Phone</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Call us at{" "}
|
||||
<a
|
||||
href="tel:+14365567100"
|
||||
className="text-blue-400 hover:text-blue-300"
|
||||
>
|
||||
(346) 556-7100
|
||||
</a>
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<MapPin className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">Office</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Queen Creek, Arizona
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<MessageSquare className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">Live Chat</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Chat with our team in real-time for quick support
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
144
client/pages/corp/CorpScheduleConsultation.tsx
Normal file
144
client/pages/corp/CorpScheduleConsultation.tsx
Normal file
|
|
@ -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 (
|
||||
<Layout>
|
||||
<div className="relative min-h-screen bg-black text-white overflow-hidden">
|
||||
{/* Animated grid background */}
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.12] [background-image:radial-gradient(circle_at_top,#3b82f6_0,rgba(0,0,0,0.45)_55%,rgba(0,0,0,0.9)_100%)]" />
|
||||
<div className="pointer-events-none absolute inset-0 bg-[linear-gradient(transparent_0,transparent_calc(100%-1px),rgba(59,130,246,0.05)_calc(100%-1px))] bg-[length:100%_32px]" />
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.08] [background-image:linear-gradient(90deg,rgba(59,130,246,0.1)_1px,transparent_1px),linear-gradient(0deg,rgba(59,130,246,0.1)_1px,transparent_1px)] [background-size:50px_50px] animate-pulse" />
|
||||
<div className="pointer-events-none absolute top-20 left-10 w-72 h-72 bg-blue-500/20 rounded-full blur-3xl animate-blob" />
|
||||
<div className="pointer-events-none absolute bottom-20 right-10 w-72 h-72 bg-blue-600/10 rounded-full blur-3xl animate-blob animation-delay-2000" />
|
||||
|
||||
<main className="relative z-10">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-6xl px-4 text-center">
|
||||
<div className="mx-auto flex max-w-3xl flex-col items-center gap-8">
|
||||
<Button
|
||||
variant="ghost"
|
||||
className="text-blue-300 hover:bg-blue-500/10"
|
||||
onClick={() => navigate("/corp")}
|
||||
>
|
||||
← Back to Corp
|
||||
</Button>
|
||||
|
||||
<Badge
|
||||
variant="outline"
|
||||
className="border-blue-400/40 bg-blue-500/10 text-blue-300 shadow-[0_0_20px_rgba(59,130,246,0.2)]"
|
||||
>
|
||||
<Calendar className="h-5 w-5 mr-2" />
|
||||
Schedule Consultation
|
||||
</Badge>
|
||||
|
||||
<h1 className="text-4xl font-black tracking-tight text-blue-300 sm:text-5xl lg:text-6xl">
|
||||
Let's Talk Strategy
|
||||
</h1>
|
||||
|
||||
<p className="text-lg text-blue-100/90 sm:text-xl">
|
||||
Book a consultation with our experts to discuss your digital
|
||||
transformation goals and how we can help.
|
||||
</p>
|
||||
|
||||
<div className="flex flex-col gap-4 sm:flex-row">
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-blue-400 text-black shadow-[0_0_30px_rgba(59,130,246,0.35)] transition hover:bg-blue-300"
|
||||
>
|
||||
<Calendar className="mr-2 h-5 w-5" />
|
||||
Book Now
|
||||
</Button>
|
||||
<Button
|
||||
size="lg"
|
||||
variant="outline"
|
||||
className="border-blue-400/60 text-blue-300 hover:bg-blue-500/10"
|
||||
>
|
||||
View Availability
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Consultation Types */}
|
||||
<section className="border-y border-blue-400/10 bg-black/80 py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<h2 className="text-3xl font-bold text-blue-300 mb-8">
|
||||
Consultation Options
|
||||
</h2>
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Clock className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">
|
||||
30 Min Quick Sync
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
A focused discussion to understand your challenges and
|
||||
explore potential solutions.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Briefcase className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">
|
||||
1 Hour Strategy Session
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
In-depth consultation to develop a strategic roadmap for
|
||||
your digital goals.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Users className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">
|
||||
Team Workshop
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Collaborative session with your team to identify
|
||||
opportunities and align strategy.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Calendar className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">
|
||||
Discovery Engagement
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Comprehensive assessment of your current state and
|
||||
transformation priorities.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
144
client/pages/corp/CorpViewCaseStudies.tsx
Normal file
144
client/pages/corp/CorpViewCaseStudies.tsx
Normal file
|
|
@ -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 (
|
||||
<Layout>
|
||||
<div className="relative min-h-screen bg-black text-white overflow-hidden">
|
||||
{/* Animated grid background */}
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.12] [background-image:radial-gradient(circle_at_top,#3b82f6_0,rgba(0,0,0,0.45)_55%,rgba(0,0,0,0.9)_100%)]" />
|
||||
<div className="pointer-events-none absolute inset-0 bg-[linear-gradient(transparent_0,transparent_calc(100%-1px),rgba(59,130,246,0.05)_calc(100%-1px))] bg-[length:100%_32px]" />
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.08] [background-image:linear-gradient(90deg,rgba(59,130,246,0.1)_1px,transparent_1px),linear-gradient(0deg,rgba(59,130,246,0.1)_1px,transparent_1px)] [background-size:50px_50px] animate-pulse" />
|
||||
<div className="pointer-events-none absolute top-20 left-10 w-72 h-72 bg-blue-500/20 rounded-full blur-3xl animate-blob" />
|
||||
<div className="pointer-events-none absolute bottom-20 right-10 w-72 h-72 bg-blue-600/10 rounded-full blur-3xl animate-blob animation-delay-2000" />
|
||||
|
||||
<main className="relative z-10">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-6xl px-4 text-center">
|
||||
<div className="mx-auto flex max-w-3xl flex-col items-center gap-8">
|
||||
<Button
|
||||
variant="ghost"
|
||||
className="text-blue-300 hover:bg-blue-500/10"
|
||||
onClick={() => navigate("/corp")}
|
||||
>
|
||||
← Back to Corp
|
||||
</Button>
|
||||
|
||||
<Badge
|
||||
variant="outline"
|
||||
className="border-blue-400/40 bg-blue-500/10 text-blue-300 shadow-[0_0_20px_rgba(59,130,246,0.2)]"
|
||||
>
|
||||
<Award className="h-5 w-5 mr-2" />
|
||||
Case Studies
|
||||
</Badge>
|
||||
|
||||
<h1 className="text-4xl font-black tracking-tight text-blue-300 sm:text-5xl lg:text-6xl">
|
||||
Success Stories
|
||||
</h1>
|
||||
|
||||
<p className="text-lg text-blue-100/90 sm:text-xl">
|
||||
See how enterprises transformed their operations and achieved
|
||||
remarkable results with our solutions.
|
||||
</p>
|
||||
|
||||
<div className="flex flex-col gap-4 sm:flex-row">
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-blue-400 text-black shadow-[0_0_30px_rgba(59,130,246,0.35)] transition hover:bg-blue-300"
|
||||
>
|
||||
<Award className="mr-2 h-5 w-5" />
|
||||
Browse Cases
|
||||
</Button>
|
||||
<Button
|
||||
size="lg"
|
||||
variant="outline"
|
||||
className="border-blue-400/60 text-blue-300 hover:bg-blue-500/10"
|
||||
>
|
||||
Get Custom Case
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Case Studies Grid */}
|
||||
<section className="border-y border-blue-400/10 bg-black/80 py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<h2 className="text-3xl font-bold text-blue-300 mb-8">
|
||||
Featured Case Studies
|
||||
</h2>
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<TrendingUp className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">
|
||||
50% Revenue Growth
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Enterprise client achieved significant revenue growth through
|
||||
digital transformation.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Target className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">
|
||||
60% Cost Reduction
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Optimized operations and reduced overhead through strategic
|
||||
consulting.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<CheckCircle className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">
|
||||
3x Time to Market
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Accelerated product launches through process optimization
|
||||
and automation.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Award className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">
|
||||
Industry Awards
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Recognized solutions that won industry awards for
|
||||
innovation and impact.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in a new issue