|
1 | | -import dynamic from 'next/dynamic'; |
2 | | -import { ServiceRow } from "./ServiceRow"; |
| 1 | +import dynamic from "next/dynamic"; |
3 | 2 | import { StylizedSvg } from "./StylizedSvg"; |
| 3 | +import { StageRow } from "./StageRow"; |
| 4 | +import Link from "next/link"; |
4 | 5 |
|
5 | | -const DesignSvg = dynamic(() => import("/public/img/services/discovery.svg"), { ssr: false }); |
6 | | -const DevSvg = dynamic(() => import("/public/img/services/rocket.svg"), { ssr: false }); |
7 | | -const TeamSvg = dynamic(() => import("/public/img/services/team.svg"), { ssr: false }); |
8 | | -const ToolsSvg = dynamic(() => import("/public/img/services/tools.svg"), { ssr: false }); |
| 6 | + |
| 7 | +const StartUpSvg = dynamic(() => import("/public/img/home/startup.svg"), { |
| 8 | + ssr: false, |
| 9 | +}); |
| 10 | +const StepUpSvg = dynamic(() => import("/public/img/home/stepup.svg"), { |
| 11 | + ssr: false, |
| 12 | +}); |
9 | 13 |
|
10 | 14 | export const ServicesSection = () => { |
11 | 15 | return ( |
12 | 16 | <> |
13 | | - <ServiceRow |
14 | | - listColumns |
15 | | - variant="blue" |
16 | | - title="Software & Devops" |
17 | | - img={<StylizedSvg variant="blue" SvgComponent={DevSvg} />} |
18 | | - alt="Image of a Laptop for Software & Devops" |
19 | | - content={ |
20 | | - <p> |
21 | | - Our bread and butter; as a team we have almost 40 years experience |
22 | | - building software of all sorts: front-end, back-end, you name it. If |
23 | | - you can dream it up, we can help you{" "} |
24 | | - <strong>build it, deploy it, and scale it</strong> to tens of |
25 | | - thousands of happy users. |
26 | | - </p> |
27 | | - } |
28 | | - listItems={[ |
29 | | - "Web sites & apps", |
30 | | - "iOS & Android", |
31 | | - "HIPAA-compliant solutions", |
32 | | - "Infrastructure management", |
33 | | - "Continuous integration", |
34 | | - "Third-Party Integrations", |
| 17 | + <StageRow |
| 18 | + title="Start up" |
| 19 | + subtitle="From vision to viable product" |
| 20 | + explainer="We help early-stage teams get from concept to launch-ready, with compliance and scalability in mind." |
| 21 | + services={[ |
| 22 | + <span> |
| 23 | + <strong>MVP development</strong> – Ship production-grade web + |
| 24 | + mobile apps quickly without cutting corners. |
| 25 | + </span>, |
| 26 | + <span> |
| 27 | + <strong>Prototyping & proof of concept</strong> – Validate ideas and |
| 28 | + secure early investment. |
| 29 | + </span>, |
| 30 | + <span> |
| 31 | + <strong>Regulated industry launches</strong> – Build in compliance |
| 32 | + from day one for health, fintech, legal, and other regulated |
| 33 | + sectors. |
| 34 | + </span>, |
35 | 35 | ]} |
36 | | - /> |
37 | | - |
38 | | - <ServiceRow |
39 | | - listColumns |
40 | | - reverse |
41 | | - variant="pink" |
42 | | - title="Design & Discovery" |
43 | | - img={<StylizedSvg variant="pink" SvgComponent={DesignSvg} />} |
44 | | - alt="Image of a lightbulb for Design & Discovery" |
45 | | - content={ |
46 | | - <p> |
47 | | - Every project starts with a robust process of design and discovery |
48 | | - to ensure not only that we know your requirements backwards and |
49 | | - forwards, but also to ensure <em>you</em> know exactly what we're |
50 | | - going to build. |
51 | | - </p> |
52 | | - } |
53 | | - listItems={[ |
54 | | - "Requirements analysis", |
55 | | - "Project design", |
56 | | - "UI & UX Solutions", |
| 36 | + whyUs={[ |
| 37 | + <span> |
| 38 | + Only <strong>senior, self-directed developers</strong> — no juniors |
| 39 | + to manage or babysit. |
| 40 | + </span>, |
| 41 | + <span> |
| 42 | + <strong>~85% FTE output in just 20 hrs/week</strong> — faster |
| 43 | + results, lower burn. |
| 44 | + </span>, |
| 45 | + <span> |
| 46 | + <strong>Developer’s developer</strong> — respected by technical |
| 47 | + teams, we stay in our lane and integrate cleanly. |
| 48 | + </span>, |
57 | 49 | ]} |
58 | | - /> |
59 | | - |
60 | | - <ServiceRow |
61 | | - listColumns |
62 | | - variant="green" |
63 | | - title="Our favorite tools" |
64 | | - img={<StylizedSvg variant="green" SvgComponent={ToolsSvg} />} |
65 | | - alt="Image of a Phone for our favorite tools" |
66 | | - content={ |
67 | | - <p> |
68 | | - Our motto is "when in doubt, get a taco." Our second motto, though, |
69 | | - is{" "} |
70 | | - <a href="/blog/2024/11/25/easy-to-fire/"> |
71 | | - <strong>"be easy to hire and easy to fire."</strong> |
72 | | - </a>{" "} |
73 | | - We're comfortable working in most tech stacks, but there are a few |
74 | | - that we tend to favor. These represent{" "} |
75 | | - <strong>widely used industry standards</strong>, so when it's time |
76 | | - for us to part ways you won't have any trouble finding devs to take |
77 | | - over. |
78 | | - </p> |
| 50 | + footer={ |
| 51 | + <> |
| 52 | + Apsis helped careviso launch a HIPAA-compliant MVP that contributed |
| 53 | + to securing <strong>$17M in Series B funding.</strong> See the{" "} |
| 54 | + <Link href="#">story</Link>. |
| 55 | + </> |
79 | 56 | } |
80 | | - listItems={[ |
81 | | - "Ruby on Rails", |
82 | | - "React", |
83 | | - "JVM & Spring Framework", |
84 | | - "Amazon Web Services", |
85 | | - "PostgreSQL, SQLServer, MySQL", |
| 57 | + variant="blue" |
| 58 | + /> |
| 59 | + <StageRow |
| 60 | + image={<StylizedSvg variant="green" SvgComponent={StartUpSvg} />} |
| 61 | + title="Scale up" |
| 62 | + subtitle="Accelerate growth and output without adding management overhead" |
| 63 | + explainer="We plug into growing teams to help them clear backlogs, hit ambitious deadlines, and scale systems — without the cost and ramp time of full-time hires." |
| 64 | + services={[ |
| 65 | + <span> |
| 66 | + <strong>Senior dev augmentation</strong> – Augment capacity with |
| 67 | + proven developers delivering enterprise-grade results. |
| 68 | + </span>, |
| 69 | + <span> |
| 70 | + <strong>Backlog clearance & roadmap acceleration</strong> – Free |
| 71 | + your team for critical-path work. |
| 72 | + </span>, |
| 73 | + <span> |
| 74 | + <strong>System & architecture optimization</strong> – Improve |
| 75 | + performance, scalability, and reliability. |
| 76 | + </span>, |
86 | 77 | ]} |
| 78 | + whyUs={[ |
| 79 | + <span> |
| 80 | + <strong>Instant impact</strong> — no onboarding lag; we integrate |
| 81 | + into workflows from day one. |
| 82 | + </span>, |
| 83 | + <span> |
| 84 | + <strong>Operational efficiency</strong> — our small, nimble team |
| 85 | + delivers more with less bureaucracy. |
| 86 | + </span>, |
| 87 | + <span> |
| 88 | + <strong>Flexible engagement</strong> — we scale up or down with your |
| 89 | + needs. |
| 90 | + </span>, |
| 91 | + ]} |
| 92 | + variant="green" |
87 | 93 | /> |
88 | | - |
89 | | - <ServiceRow |
90 | | - listColumns |
91 | | - variant="gold" |
92 | | - reverse |
93 | | - title="How we work" |
94 | | - img={<StylizedSvg variant="gold" SvgComponent={TeamSvg} />} |
95 | | - alt="Image of a piece of paper for how we work" |
96 | | - content={ |
97 | | - <p> |
98 | | - At Apsis, we work within a framework we call{" "} |
99 | | - <strong>"almost agile"</strong> — a setup that helps us remain |
100 | | - responsive to your particular project's needs. For any project, no |
101 | | - matter how small you can expect to work with a{" "} |
102 | | - <strong>single point of contact</strong> who will manage at least |
103 | | - one other dev to provide a flexible team capable of tackling your |
104 | | - requirements. |
105 | | - </p> |
106 | | - } |
107 | | - listItems={[ |
108 | | - "Team augmentation", |
109 | | - "Embedded engineers", |
110 | | - "Standalone projects", |
111 | | - "Small teams", |
| 94 | + <StageRow |
| 95 | + image={<StylizedSvg variant="pink" SvgComponent={StepUpSvg} />} |
| 96 | + title="Step up" |
| 97 | + subtitle="Level up your product and processes with emerging tech" |
| 98 | + explainer="We help established teams integrate AI, streamline workflows, and evolve infrastructure to stay ahead of the market." |
| 99 | + services={[ |
| 100 | + <span> |
| 101 | + <strong>AI feature development</strong> – Embed LLMs and AI |
| 102 | + capabilities securely and responsibly. |
| 103 | + </span>, |
| 104 | + <span> |
| 105 | + <strong>System integrations & workflow automation</strong> – Connect |
| 106 | + platforms, APIs, and data sources. |
| 107 | + </span>, |
| 108 | + <span> |
| 109 | + <strong>DevOps & infrastructure evolution</strong> – CI/CD |
| 110 | + pipelines, cloud optimization, and environment management. |
| 111 | + </span>, |
112 | 112 | ]} |
| 113 | + whyUs={[ |
| 114 | + <span> |
| 115 | + <strong>AI experience baked in</strong> — from embedding AI in MVPs |
| 116 | + to building advanced, secure AI-powered features. |
| 117 | + </span>, |
| 118 | + <span> |
| 119 | + Proven in <strong>high-stakes, regulated industries</strong> — we |
| 120 | + protect data and compliance. |
| 121 | + </span>, |
| 122 | + <span> |
| 123 | + <strong>Rapid iteration</strong> — deploy, learn, and evolve in |
| 124 | + weeks, not months. |
| 125 | + </span>, |
| 126 | + ]} |
| 127 | + variant="pink" |
113 | 128 | /> |
114 | 129 | </> |
115 | 130 | ); |
|
0 commit comments