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

Add first iteration of AWS page #657

Open
wants to merge 3 commits into
base: production
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added source/assets/images/services/aws-header.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added source/assets/images/services/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
152 changes: 152 additions & 0 deletions source/services/aws-partnership.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
---
title: "AWS Partnership"

introduction: "Unboxed provides cloud-based AWS infrastructure, services and support, as an AWS Select Tier Consulting Partner in the public sector partner programme.<br/>Our AWS-certified team has a wealth of experience in delivering highly-robust AWS services and infrastructure, from EC2 to the latest Serverless technology, and digital products and services across central and local government, the NHS, and the private sector.<br/>Our approach to infrastructure configuration leverages our deep expertise in platform automation and results in highly-flexible and scalable infrastructure with minimal maintenance overheads."

offerings:
content:
- title: "Build"
image: "https://via.placeholder.com/375x202.png"
text: "Creation and implementation of robust AWS infrastructure."

- title: "Scale"
image: "https://via.placeholder.com/375x202.png"
text: "Scaling of applications to support increasing levels and peaks of traffic."

- title: "Support"
image: "https://via.placeholder.com/375x202.png"
text: "Ongoing office hours and 24/7 support and maintenance."

aws_hero:
image: "/assets/images/services/aws-header.jpg"

developers:
image: "/assets/images/people/inside_unboxed/[email protected]"

quote:
quote: "We met our target by having all necessary infrastructure in place to support the re-launch, as well as the ongoing support in place for our digital growth strategy, in just two weeks. With the new website now launched, it’s a very exciting time for the V&A."
source: "Kati Price, Head of Digital Media, V&A"

case_studies:
introduction: "Who we have done this with"
content:
- title: "Government Digital Services"
image: "/assets/images/product-stories/petitions.png"
text: "Government Digital Services"

- title: "V&A"
image: "/assets/images/product-stories/v-and-a-museum.jpg"
text: "V&A"

- title: "Southwark Council"
image: "https://via.placeholder.com/454x180.png"
text: "Southwark Council"

offer:
title: Why Unboxed?
incentives:
- 16 years of experience in delivering end-to-end digital products and services
- A track record of developing and supporting applications and infrastructure on AWS
- An AWS-certified development team
- Experience of delivering AWS services across all sectors

benefits:
title: Benefits?
incentives:
- An experienced AWS-certified team
- Reduced pressure on your in-house team
- Minimised hosting costs, only paying for what is used
- Automated security updates
- Autoscaling to support unpredictable traffic


---
<header class="page-header page-header--bottom-margin">
<div class="page-header__container">
<h1 class="page-header__title">
<%= current_page.data.title %>
</h1>
</div>
</header>

<div class="container">
<section class="component--full-page">
<div class="diagram-container">
<%= image_tag current_page.data.aws_hero.image, alt: "Graphic showing AWS services", class: "diagram", srcset: retina_srcset(current_page.data.aws_hero.image) %>
</div>
</section>

<section class="component--full-page">
<p class="services__introduction">
<%= current_page.data.introduction %>
</p>
</section>

<section class="component--full-page">
<div class="component__tile text-tile">
<h2 class="text-tile__title">
<%= current_page.data.offer.title %>
</h2>

<ul class="text-tile__list">
<% current_page.data.offer.incentives.each do |incentive| %>
<li class="text-tile__list-item">
<%= incentive %>
</li>
<% end %>
</ul>
</div>
</section>

<%= partial 'shared/quote_caricature', locals: current_page.data.quote %>

<section class="offerings" data-header-waypoint>
<% current_page.data.offerings.content.each do |offering| %>
<div class="services-container__service">
<div class="services-page-service">
<p class="service__title">
<%= offering.title %>
</p>
<%= image_tag offering.image, alt: "Case study", srcset: retina_srcset(offering.image) %>
<p class="service__paragraph">
<%= offering.text %>
</p>
</div>
</div>
<% end %>
</section>

<section class="component--full-page">
<div class="component__tile text-tile">
<h2 class="text-tile__title">
<%= current_page.data.benefits.title %>
</h2>

<ul class="text-tile__list">
<% current_page.data.benefits.incentives.each do |benefit| %>
<li class="text-tile__list-item">
<%= benefit %>
</li>
<% end %>
</ul>
</div>
</section>

<section class="case_studies" data-header-waypoint>
<h2 class="text-tile__title">
<%= current_page.data.case_studies.introduction %>
</h2>
<% current_page.data.case_studies.content.each do |case_study| %>
<div class="services-container__service">
<div class="services-page-service">
<%= image_tag case_study.image, alt: "Case study", srcset: retina_srcset(case_study.image) %>
<h3 class="service__title">
<%= case_study.title %>
</h3>
</div>
</div>
<% end %>
</section>
</div>

<%= partial 'book_meeting' %>