Skip to content
This repository was archived by the owner on Sep 2, 2022. It is now read-only.

Commit 93f2f9d

Browse files
committed
Add first iteration of AWS page
1 parent 19037af commit 93f2f9d

File tree

1 file changed

+106
-0
lines changed

1 file changed

+106
-0
lines changed

source/aws-partnership.html.erb

+106
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
---
2+
title: "AWS Partnership"
3+
4+
services:
5+
introduction: "We have a wealth of experience delivering highly robust AWS infrastructure and digital services for sectors including Central and Local Government, Healthcare and Housing. We have exceptionally talented AWS certified people, delivering value on every project."
6+
content:
7+
- title: "AWS infrastructure implementation"
8+
image: "/assets/images/homepage/service-discover.jpg"
9+
text: "From massively scaled Government applications to minimal MVPs, we can deliver the cloud solutions you need"
10+
- title: "Ongoing AWS infrastructure support"
11+
image: "/assets/images/homepage/service-build.jpg"
12+
text: "We offer skilled AWS professionals to ensure high availability and rapid problem-solving"
13+
- title: "Scaling existing products"
14+
image: "/assets/images/homepage/service-transform.jpg"
15+
text: "We have experience in building products that can rapidly scale to support hundreds of thousands of users per hour"
16+
17+
aws_hero:
18+
image: "/assets/images/services/approach-diagram.gif"
19+
20+
aws_reason:
21+
title: "Unboxed and AWS"
22+
text: "We have a proven track record of developing and supporting applications and infrastructure on AWS in both the private and public sector. We built the UK Petitions website (amongst others) on highly scalable AWS infrastructure
23+
24+
We build pragmatic user-focused products, maximising return on investment, specialising in Ruby on Rails. Our CTO is one of 12 global Rails core members.
25+
26+
We provide multidisciplinary teams to deliver across the full digital development lifecycle, including user research, service design, development, infrastructure, and ongoing support and maintenance."
27+
28+
case_studies:
29+
introduction: "Case Studies"
30+
content:
31+
- title: "epetitions"
32+
image: "/assets/images/homepage/service-discover.jpg"
33+
text: "We built and support this important Government service: up to 100,000 signatures submitted and processed per hour"
34+
- title: "V&A"
35+
image: "/assets/images/homepage/service-build.jpg"
36+
text: "Hosting and infrastructure delivery of new digital platform for world-leading Victoria and Albert Museum"
37+
- title: "BoPS"
38+
image: "/assets/images/homepage/service-transform.jpg"
39+
text: "A user-centred Back-office Planning System (BoPS) for local authorities"
40+
41+
---
42+
<header class="page-header page-header--bottom-margin">
43+
<div class="page-header__container">
44+
<h1 class="page-header__title">
45+
<%= current_page.data.title %>
46+
</h1>
47+
</div>
48+
</header>
49+
50+
<div class="container">
51+
<section class="component--full-page">
52+
<div class="diagram-container">
53+
<%= image_tag current_page.data.aws_hero.image, alt: "Graphic showing AWS services", class: "diagram", srcset: retina_srcset(current_page.data.aws_hero.image) %>
54+
</div>
55+
</section>
56+
<section class="services" data-header-waypoint>
57+
<p class="services__introduction">
58+
<%= current_page.data.services.introduction %>
59+
</p>
60+
<% current_page.data.services.content.each do |service| %>
61+
<div class="services-container__service">
62+
<div class="services-page-service">
63+
<%= service.image %>
64+
<h3 class="service__title">
65+
<%= service.title %>
66+
</h3>
67+
<p class="service__paragraph">
68+
<%= service.text %>
69+
</p>
70+
</div>
71+
</div>
72+
<% end %>
73+
</section>
74+
<section class="component--full-page">
75+
<div class="services-page-text-tile">
76+
<h2 class="text-tile__title">
77+
<%= current_page.data.aws_reason.title %>
78+
</h2>
79+
80+
<p class="text-tile__paragraph--with-spacing">
81+
<%= current_page.data.aws_reason.text %>
82+
</p>
83+
</div>
84+
</section>
85+
86+
<section class="case_studies" data-header-waypoint>
87+
<p class="services__introduction">
88+
<%= current_page.data.case_studies.introduction %>
89+
</p>
90+
<% current_page.data.case_studies.content.each do |case_study| %>
91+
<div class="services-container__service">
92+
<div class="services-page-service">
93+
<%= case_study.image %>
94+
<h3 class="service__title">
95+
<%= case_study.title %>
96+
</h3>
97+
<p class="service__paragraph">
98+
<%= case_study.text %>
99+
</p>
100+
</div>
101+
</div>
102+
<% end %>
103+
</section>
104+
</div>
105+
106+
<%= partial 'book_meeting' %>

0 commit comments

Comments
 (0)