Skip to content

Commit 51e8796

Browse files
author
Jove Zhong
committed
cannot use / for images
1 parent 03d7eff commit 51e8796

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/layout/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const Header: React.FC = () => {
88
<div className="mr-3">
99
<div className="h-10 w-10 rounded-md flex items-center justify-center">
1010
<img
11-
src="/timeplus_logo.svg"
11+
src="timeplus_logo.svg"
1212
alt="Timeplus Logo"
1313
className="h-8 w-8"
1414
/>

src/data/demos.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const demos: Demo[] = [
2727
"Denormalize N+1 records in MySQL to a JSON doc, and Save in S3/GCS",
2828
category: "Pipeline",
2929
keywords: ["cdc", "debezium", "kafka", "pipeline", "s3", "oltp", "olap"],
30-
coverImage: "/cdc_cover.png",
30+
coverImage: "cdc_cover.png",
3131
introduction: `It's common to design your OLTP database schema in the normalized way. For example, when a customer places an order with multiple line items, one row will be added to the "orders" MySQL table with a "orderNumber", and multiple rows to add in the "order_details" table with the same "orderNumber".
3232
3333
The goal is to create a JSON document for each order, with all line items aggregated, with the subtotal calculated, so that BigQuery can run SQL for those JSON files in GCS and no need to perform expensive JOINs.`,
@@ -51,7 +51,7 @@ The goal is to create a JSON document for each order, with all line items aggreg
5151
"Create a Materialized View to apply range join to enrich each order_details message with the order event, then apply tumble window join to aggregate line items for same order and send to S3/GCS ",
5252
"Optionally, you can set up BigQuery to scan the JSON files in GCS or use Looker to visualize them",
5353
],
54-
dataFlowImage: "/cdc_data_flow.png",
54+
dataFlowImage: "cdc_data_flow.png",
5555
sqlExample: `create external stream retailer_etl.topic_orders(raw string)
5656
settings type='kafka', brokers='10.138.0.23:9092',topic='demo.cdc.mysql.retailer.orders';
5757

0 commit comments

Comments
 (0)