From f00f8f185c50722b6a9c0da5da4667b3bbe81509 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Thu, 6 Nov 2025 20:08:15 +0000 Subject: [PATCH] Create Corp Teams page (blue) cgen-9ff47ee889ab478c8407c3f4ad261b69 --- client/pages/corp/CorpPricing.tsx | 144 +++++++++++++++++++++++++++++ client/pages/corp/CorpTeams.tsx | 145 ++++++++++++++++++++++++++++++ 2 files changed, 289 insertions(+) create mode 100644 client/pages/corp/CorpPricing.tsx create mode 100644 client/pages/corp/CorpTeams.tsx diff --git a/client/pages/corp/CorpPricing.tsx b/client/pages/corp/CorpPricing.tsx new file mode 100644 index 00000000..431e5e1f --- /dev/null +++ b/client/pages/corp/CorpPricing.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 { Check } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +const PRICING_TIERS = [ + { + name: "Consulting Starter", + description: "For initial assessments", + price: "$5,000", + period: "/month", + features: [ + "40 hours consulting", + "Quarterly reviews", + "Email support", + "Strategy documentation", + ], + cta: "Get Started", + highlighted: false, + }, + { + name: "Enterprise", + description: "Full-service solutions", + price: "$15,000", + period: "/month", + features: [ + "Unlimited consulting hours", + "Dedicated account manager", + "Custom implementations", + "Monthly strategy sessions", + "Priority support 24/7", + ], + cta: "Schedule Demo", + highlighted: true, + }, + { + name: "Strategic Partnership", + description: "Long-term transformation", + price: "Custom", + features: [ + "Everything in Enterprise", + "Executive briefings", + "Custom development", + "Board-level reports", + "Dedicated team allocation", + ], + cta: "Contact Sales", + highlighted: false, + }, +]; + +export default function CorpPricing() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated backgrounds */} +
+
+
+
+
+ +
+ {/* Header */} +
+
+ + +

+ AeThex Corp Services Pricing +

+

+ Enterprise consulting tailored to your business needs +

+
+
+ + {/* Pricing Cards */} +
+
+
+ {PRICING_TIERS.map((tier) => ( + + + {tier.name} +

{tier.description}

+
+ +
+
+ {tier.price} +
+ {tier.period && ( +

{tier.period}

+ )} +
+ +
    + {tier.features.map((feature) => ( +
  • + + {feature} +
  • + ))} +
+ + +
+
+ ))} +
+
+
+
+
+ + ); +} diff --git a/client/pages/corp/CorpTeams.tsx b/client/pages/corp/CorpTeams.tsx new file mode 100644 index 00000000..b1cce8c7 --- /dev/null +++ b/client/pages/corp/CorpTeams.tsx @@ -0,0 +1,145 @@ +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 { Users, Github, Mail, Linkedin } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +const TEAM_MEMBERS = [ + { + name: "Victoria Chen", + role: "Chief Strategy Officer", + bio: "Leading enterprise partnerships and solutions", + avatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=Victoria", + skills: ["Strategy", "Partnerships", "Enterprise"], + social: { github: "#", linkedin: "#", email: "#" }, + }, + { + name: "David Martinez", + role: "Solutions Architect", + bio: "Designing custom enterprise solutions", + avatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=David", + skills: ["Architecture", "Consulting", "Solutions"], + social: { github: "#", linkedin: "#", email: "#" }, + }, + { + name: "Lisa Wong", + role: "Account Executive", + bio: "Managing key enterprise relationships", + avatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=Lisa", + skills: ["Sales", "Relationships", "Business Dev"], + social: { github: "#", linkedin: "#", email: "#" }, + }, + { + name: "Robert Johnson", + role: "Implementation Lead", + bio: "Ensuring successful client implementations", + avatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=Robert", + skills: ["Implementation", "Project Mgmt", "Support"], + social: { github: "#", linkedin: "#", email: "#" }, + }, +]; + +export default function CorpTeams() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated backgrounds */} +
+
+
+
+
+ +
+ {/* Header */} +
+
+ + +
+ + + Our Team + +

+ AeThex Corp Leadership +

+

+ Enterprise experts delivering world-class consulting services +

+
+
+
+ + {/* Team Grid */} +
+
+
+ {TEAM_MEMBERS.map((member) => ( + + + {member.name} + {member.name} +

{member.role}

+
+ +

{member.bio}

+
+ {member.skills.map((skill) => ( + + {skill} + + ))} +
+ +
+
+ ))} +
+ + {/* Hiring Section */} +
+

Join AeThex Corp

+

+ We're growing our team of enterprise experts and consultants +

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