Skip to content
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
20 changes: 20 additions & 0 deletions website/public/images/postgres-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions website/src/components/Depedencies.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<span class="regular-m">REDIS</span>
</div>
<div class="card">
<img src="/images/clickhouse-icon.svg" alt="CLICKHOUSE" />
<span class="regular-m">CLICKHOUSE</span>
<img src="/images/postgres-icon.svg" alt="POSTGRES" />
<span class="regular-m">POSTGRES</span>
</div>
</div>
<div class="divider">
Expand Down
2 changes: 1 addition & 1 deletion website/src/components/Features.astro
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ import Alert from "./Features/Alert.astro";
<div class="feature-item item-8">
<BestPractices />
<div class="feature-item-content">
<h3 class="bold-m">Webhook best practices, by default</h3>
<h3 class="bold-m">Default webhook best practices</h3>
<p class="regular-m sans-serif">
Opt-out idempotency headers, timestamp and signature, and signature
rotation.
Expand Down
6 changes: 5 additions & 1 deletion website/src/components/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { LINKS } from "../links";
<div>
<p class="regular-l sans-serif">
Manage and deliver platform events directly to your users' preferred <strong
class="sans-serif">event destinations</strong
class="sans-serif">Event Destinations</strong
>: Webhooks, Hookdeck, AWS SQS, RabbitMQ, GCP Pub/Sub, Amazon
EventBridge, and Kafka.
</p>
Expand Down Expand Up @@ -137,6 +137,10 @@ import { LINKS } from "../links";
p {
margin: 0;
color: var(--foreground-neutral-2);

strong {
font-weight: 500;
}
}

.button-group {
Expand Down