Skip to content

Commit 5ed855e

Browse files
authored
Merge branch 'main' into jh_asof_tolerance
2 parents fa533f1 + 79aa917 commit 5ed855e

File tree

3 files changed

+9
-23
lines changed

3 files changed

+9
-23
lines changed

.github/workflows/preview.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Node.js
2424
uses: actions/setup-node@v3
2525
with:
26-
node-version: "18"
26+
node-version: "22"
2727
cache: "yarn"
2828

2929
- name: Install dependencies
@@ -46,7 +46,6 @@ jobs:
4646
run: |
4747
PREVIEW_URL=$(netlify deploy \
4848
--dir=build \
49-
--no-build \
5049
--auth=$NETLIFY_AUTH_TOKEN \
5150
--site=$NETLIFY_SITE_ID \
5251
--alias=preview-${{ github.event.pull_request.number }} \
@@ -81,7 +80,7 @@ jobs:
8180
- name: Setup Node.js
8281
uses: actions/setup-node@v3
8382
with:
84-
node-version: "18"
83+
node-version: "22"
8584
cache: "yarn"
8685

8786
- name: Install dependencies

src/components/Tailwind/WideNav/index.tsx

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
import {
1010
Bars3Icon,
1111
PlayCircleIcon,
12-
RocketLaunchIcon,
12+
ArrowTrendingUpIcon,
1313
PresentationChartLineIcon,
1414
ArrowDownTrayIcon,
1515
} from "@heroicons/react/24/outline"
@@ -22,7 +22,6 @@ import { usePluginData } from "@docusaurus/useGlobalData"
2222

2323
import InfluxSVG from "../../../../static/images/logos/influxdb.svg"
2424
import TimescaleSVG from "../../../../static/images/logos/timescale.svg"
25-
import MongoDBSVG from "../../../../static/images/logos/mongodb.svg"
2625

2726
import styles from "./styles.module.css"
2827

@@ -51,14 +50,13 @@ const features = [
5150
description:
5251
"Explore QuestDB use cases across Capital Markets.",
5352
href: "/market-data/",
54-
icon: RocketLaunchIcon,
53+
icon: ArrowTrendingUpIcon,
5554
},
5655
{
57-
name: "vs. MongoDB",
58-
description:
59-
"Can MongoDB keep up with a specialized time-series database? Read our comparison.",
60-
href: "/blog/mongodb-time-series-benchmark-review/",
61-
svg: MongoDBSVG,
56+
name: "Live Crypto Price Charts",
57+
description: "Tick-by-tick data ingested into QuestDB: Trade Blotter · OHLC · VWAP · RSI · Bollinger Bands",
58+
href: "/dashboards/crypto/",
59+
svg: PresentationChartLineIcon,
6260
},
6361
{
6462
name: "vs. InfluxDB",
@@ -87,11 +85,6 @@ const callsToAction = [
8785
href: "/download/",
8886
icon: ArrowDownTrayIcon,
8987
},
90-
{
91-
name: "View real-time crypto dashboards",
92-
href: "/dashboards/crypto/",
93-
icon: PresentationChartLineIcon,
94-
},
9588
]
9689

9790
export default function WideNav() {
@@ -235,7 +228,7 @@ export default function WideNav() {
235228
))}
236229
</div>
237230
<div className="mx-auto px-6 lg:px-8 pb-4">
238-
<div className="grid grid-cols-3 divide-x divide-gray-900/5 border-solid border-[1px] border-primary rounded-lg group-hover:bg-gray-700">
231+
<div className="grid grid-cols-2 divide-x divide-gray-900/5 border-solid border-[1px] border-primary rounded-lg group-hover:bg-gray-700">
239232
{callsToAction.map((item) => (
240233
<a
241234
key={item.name}

static/images/logos/mongodb.svg

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)