Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reapply branding changes #3

Merged
merged 1 commit into from
Feb 14, 2023
Merged
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
2 changes: 1 addition & 1 deletion src/e2e/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Retail Store Sample App - End-to-End Tests
# Zephyr Archaeotech Emporium - End-to-End Tests

This component provides a suite of end-to-end tests that exercise a broad set of functionality of the application as a whole. They are designed to be cross-cutting and treat the application as a black box rather than a set of distinct components.

Expand Down
2 changes: 1 addition & 1 deletion src/e2e/cart.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('when on cart', function() {
});

it('should have title', function() {
expect(cart.getTitle()).toEqual('Retail Store Sample App');
expect(cart.getTitle()).toEqual('Zephyr Archaeotech Emporium');
});

it('should have breadcrumb', function() {
Expand Down
2 changes: 1 addition & 1 deletion src/e2e/catalog.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('when on catalog', function() {
});

it('should have title', function() {
expect(catalog.getTitle()).toEqual('Retail Store Sample App');
expect(catalog.getTitle()).toEqual('Zephyr Archaeotech Emporium');
});

it('should have breadcrumb', function() {
Expand Down
2 changes: 1 addition & 1 deletion src/e2e/homepage.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('when on homepage', function() {
});

it('should have a title', function() {
expect(homepage.getTitle()).toEqual('Retail Store Sample App');
expect(homepage.getTitle()).toEqual('Zephyr Archaeotech Emporium');
});

describe('and open Home', function() {
Expand Down
2 changes: 1 addition & 1 deletion src/e2e/product.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('when on product', function() {
});

it('should have title', function() {
expect(product.getTitle()).toEqual('Retail Store Sample App');
expect(product.getTitle()).toEqual('Zephyr Archaeotech Emporium');
});

it('should have breadcrumb', function() {
Expand Down
2 changes: 1 addition & 1 deletion src/load-generator/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Retail Store Sample App - Load Generator
# Zephyr Archaeotech Emporium - Load Generator

This is a utility component to generate synthetic load on the sample application, which is useful for scenarios such as autoscaling, observability and resiliency testing. It primarily consists of a set of scenarios for [Artillery](https://github.com/artilleryio/artillery), as well as scripts to help run it.

Expand Down
2 changes: 1 addition & 1 deletion src/ui/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AWS Containers Retail Sample - UI Service
# Zephyr Archaeotech Emporium - UI Service

| Language | Persistence |
|---|---|
Expand Down
4 changes: 2 additions & 2 deletions src/ui/src/main/resources/templates/fragments/error.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Retail Store Sample App</title>
<title>Zephyr Archaeotech Emporium</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="d-flex align-items-center justify-content-center vh-100">
<div class="text-center">
<h1 class="display-1 fw-bold" th:text="${code}">404</h1>
<p class="fs-3"> <span class="text-danger">Opps!</span> Sorry.</p>
<p class="fs-3"> <span class="text-danger">Oops!</span> Sorry.</p>
<p class="lead">
An error has occurred, you better go back.
</p>
Expand Down
4 changes: 2 additions & 2 deletions src/ui/src/main/resources/templates/fragments/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Retail Store Sample App</title>
<title>Zephyr Archaeotech Emporium</title>

<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">

Expand All @@ -21,7 +21,7 @@
</section>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="/home">Retail Store Sample</a>
<a class="navbar-brand" href="/home">Zephyr Archaeotech Emporium</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 ms-lg-4">
Expand Down