Skip to content

Commit 258a6d0

Browse files
authored
feat: replace connect to bi page in playground with cube bi page (cube-js#10293)
* feat: replace connect to bi page in playground with cube bi page * Remove unused PNG logo file, using SVG version instead
1 parent 51a6547 commit 258a6d0

8 files changed

Lines changed: 98 additions & 603 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ For a step-by-step guide, [see the docs](https://cube.dev/docs/getting-started-d
5454

5555
### Cube — Complete Modern BI Tool from Cube Core Creators
5656

57-
[Cube](https://cube.dev?ref=github-readme) is a complete modern AI-first business intelligence platform built on Cube Core. It provides a fully integrated solution with a user-friendly interface, advanced analytics capabilities, and managed infrastructure. [Cube Cloud](https://cube.dev/cloud?ref=github-readme) offers the fastest way to get started with instant and free access for development projects and proofs of concept.
57+
[Cube](https://cube.dev?ref=github-readme) is a complete modern agentic analytics platform built on Cube Core. It provides a fully integrated solution with a user-friendly interface, advanced analytics capabilities, and managed infrastructure.
5858

5959
<a href="https://cubecloud.dev/auth/signup?ref=github-readme"><img src="https://cubedev-blog-images.s3.us-east-2.amazonaws.com/f1f1eac0-0b44-4c47-936e-33b5c06eedf0.png" alt="Get started now" width="200px"></a>
6060

Lines changed: 18 additions & 0 deletions
Loading

packages/cubejs-playground/src/components/Header/Header.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default function Header({ selectedKeys }: Props) {
3838
<StyledHeader>
3939
<div style={{ float: 'left' }}>
4040
<img
41-
src="./cube-logo.svg"
41+
src="./cube-core-logo-adapted_for_dark_bg.svg"
4242
style={{ height: 28, marginRight: 28 }}
4343
alt=""
4444
/>
@@ -58,8 +58,8 @@ export default function Header({ selectedKeys }: Props) {
5858
<Link to="/frontend-integrations">Frontend Integrations</Link>
5959
</StyledMenuItem>
6060

61-
<StyledMenuItem key="/connect-to-bi">
62-
<Link to="/connect-to-bi">Connect to BI</Link>
61+
<StyledMenuItem key="/cube-bi">
62+
<Link to="/cube-bi">Cube BI</Link>
6363
</StyledMenuItem>
6464

6565
<StyledMenuButton

packages/cubejs-playground/src/components/Header/RunOnCubeCloud.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function RunOnCubeCloud() {
3434
) : (
3535
<CloudFilled />
3636
)}
37-
{!active ? 'Run' : 'Running'} on Cube Cloud
37+
{!active ? 'Run' : 'Running'} in Cloud
3838
</StyledMenuButton>
3939
);
4040

packages/cubejs-playground/src/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
ConnectionWizardPage,
1010
SchemaPage,
1111
IndexPage,
12-
ConnectToBiPage,
12+
CubeBiPage,
1313
FrontendIntegrationsPage,
1414
} from './pages';
1515
import { SecurityContextProvider } from './components/SecurityContext/SecurityContextProvider';
@@ -75,9 +75,9 @@ ReactDOM.render(
7575
component={() => <ConnectionWizardPage history={history} />}
7676
/>
7777
<Route
78-
key="connect-to-bi"
79-
path="/connect-to-bi"
80-
component={ConnectToBiPage}
78+
key="cube-bi"
79+
path="/cube-bi"
80+
component={CubeBiPage}
8181
/>
8282
<Route
8383
key="frontend-integrations"

0 commit comments

Comments
 (0)