Skip to content

Commit

Permalink
update url
Browse files Browse the repository at this point in the history
  • Loading branch information
amcdnl committed Jun 4, 2024
1 parent c699da6 commit 774ec29
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Reaviz Website

## Links
- [Website](https://reaviz.io)
- [Website](https://reaviz.dev)
- [Nextra Theme](https://github.com/reaviz/reablocks-docs-theme)
2 changes: 1 addition & 1 deletion src/components/layout/nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const navLinks = [
},
{
label: "Storybook",
href: "https://storybook.reaviz.io",
href: "https://storybook.reaviz.dev",
},
{
label: "GitHub",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/block-canvas.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const BlockCanvas: FC<BlockCanvasProps> = ({
storybook ? [{
title: 'View Storybook',
onClick: () => {
window.open(`https://storybook.reaviz.io/?path=/story/${storybook}`, '_blank');
window.open(`https://storybook.reaviz.dev/?path=/story/${storybook}`, '_blank');
}
}] : []
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/toggle-canvas.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const ToggleCanvas: FC<ToggleCanvasProps> = ({ storybook, ...props }) =>
storybook ? [{
title: 'View Storybook',
onClick: () => {
window.open(`https://reaviz.io/?path=/story/${storybook}`, '_blank');
window.open(`https://reaviz.dev/?path=/story/${storybook}`, '_blank');
}
}] : []
)
Expand Down
2 changes: 1 addition & 1 deletion src/pages/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"storybook": {
"title": "Storybook",
"type": "page",
"href": "https://storybook.reaviz.io",
"href": "https://storybook.reaviz.dev",
"newWindow": true
},
"support": {
Expand Down
2 changes: 1 addition & 1 deletion theme.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Link from "next/link";
const config: DocsThemeConfig = {
head: (
<>
<meta property="og:image" content="https://reaviz.io/preview.png" />
<meta property="og:image" content="https://reaviz.dev/preview.png" />
<meta
property="og:title"
content="reaviz - Open Source ReactJS Data Visualizations Library"
Expand Down

0 comments on commit 774ec29

Please sign in to comment.