From 2f53d1031a51f2ddda2943d468760e8545bc8c58 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:11:16 +0000 Subject: [PATCH] Seed: services template (18 files) --- src/pages/CaseStudy.tsx | 166 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 166 insertions(+) create mode 100644 src/pages/CaseStudy.tsx diff --git a/src/pages/CaseStudy.tsx b/src/pages/CaseStudy.tsx new file mode 100644 index 0000000..ce12364 --- /dev/null +++ b/src/pages/CaseStudy.tsx @@ -0,0 +1,166 @@ +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Badge } from "@/components/ui/badge"; +import { + ArrowLeft, ArrowRight, CheckCircle2, Star, ChevronLeft, ChevronRight +} from "lucide-react"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + +const techStack = ["React", "TypeScript", "Node.js", "PostgreSQL", "AWS", "Figma"]; + +const results = [ + { value: "+40%", label: "Revenue Increase" }, + { value: "2.1s", label: "Avg Load Time" }, + { value: "+65%", label: "Conversion Rate" }, +]; + +const solutionPoints = [ + "Complete UX audit and redesign with user research-backed decisions", + "Migration to a headless commerce architecture for flexibility", + "Performance optimization achieving sub-2-second load times", + "Automated CI/CD pipeline with comprehensive testing coverage", +]; + +export default function CaseStudyPage() { + return ( +
+
+ + {/* ── BACK LINK ── */} +
+
+ + Back to Home + +
+
+ + {/* ── HERO ── */} +
+
+ Acme Corp +

+ Reimagining the Acme Digital Experience +

+

+ A complete digital transformation for one of the fastest-growing e-commerce brands, resulting in a 40% revenue increase within three months. +

+
+
+ + {/* ── FULL-WIDTH IMAGE ── */} +
+
+
+
+
+
+
+
+
+ + {/* ── CHALLENGE ── */} +
+
+

The Challenge

+

+ Acme Corp was struggling with an outdated website that suffered from poor performance, low conversion rates, and a fragmented user experience across devices. Their existing platform could not scale to meet growing demand. +

+
+
+ + {/* ── SOLUTION ── */} +
+
+

Our Solution

+

+ We took a holistic approach, redesigning the entire digital experience from the ground up while implementing a modern tech stack built for performance and scale. +

+
    + {solutionPoints.map((point, i) => ( +
  • + + {point} +
  • + ))} +
+
+
+ + {/* ── RESULTS ── */} +
+
+

Results

+
+ {results.map((r, i) => ( +
+
{r.value}
+
{r.label}
+
+ ))} +
+
+
+
8 Weeks
+
Project Duration
+
+
+
6 People
+
Team Size
+
+
+
+
+ + {/* ── TESTIMONIAL ── */} +
+
+
+
+ {[...Array(5)].map((_, j) => ( + + ))} +
+
+ "Apex Studio transformed our online presence. Revenue increased 40% within three months of launching our new site. They truly understood our vision." +
+
+
+
+
Emily Chen
+
VP Marketing, Acme Corp
+
+
+
+
+
+ + {/* ── TECH STACK ── */} +
+
+

Tech Stack

+
+ {techStack.map((tech, i) => ( + {tech} + ))} +
+
+
+ + {/* ── NAV ── */} +
+
+ + +
+
+ +
+ ); +} \ No newline at end of file