Skip to content

Commit 29897b2

Browse files
committed
replace architecture diagram with simpler and smaller version
1 parent 02d1934 commit 29897b2

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

src/frontend/src/App.vue

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,13 @@ const tab = ref("showcase");
2727
<div class="container">
2828
<div v-show="tab === 'showcase'">
2929
<h2>Simulating customers placing orders on a website</h2>
30+
<div class="architecture-diagram"></div>
3031
<div class="sections">
3132
<div><ClientEndpoint /></div>
3233
<div><SalesEndpoint /></div>
3334
<div><BillingEndpoint /></div>
3435
<div><ShippingEndpoint /></div>
3536
</div>
36-
<div style="padding-top: 2rem">
37-
<img src="/src/assets/small-diagram.svg" alt="Particular Software" />
38-
</div>
3937
</div>
4038
<div v-show="tab === 'tryit'"><TryItOut /></div>
4139
<floating-button
@@ -48,6 +46,16 @@ const tab = ref("showcase");
4846
<style scoped>
4947
@import "./assets/tabs.css";
5048
49+
.architecture-diagram {
50+
background-image: url("./assets/data_flow.png");
51+
height: 7.9rem;
52+
width: 18rem;
53+
position: fixed;
54+
background-size: contain;
55+
top: 1rem;
56+
right: calc(50% - 640px + 7em);
57+
}
58+
5159
.container {
5260
flex: 1;
5361
overflow: auto;
12.2 KB
Loading

0 commit comments

Comments
 (0)