Skip to content

Commit

Permalink
docs(landing): fix showcase labels
Browse files Browse the repository at this point in the history
  • Loading branch information
aliemir committed Nov 8, 2023
1 parent e2d6635 commit beab53a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions documentation/src/refine-theme/landing-hero-showcase-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const LandingHeroShowcaseSection = ({}) => {
"font-semibold",
)}
>
See live demo
{activeApp.label}
</span>
<LandingArrowRightIcon />
</a>
Expand Down Expand Up @@ -663,21 +663,25 @@ const apps = [
name: "CRM Application",
link: "https://example.crm.refine.dev/",
showcase: ShowcaseCRM,
label: "See live demo",
},
{
name: "HR Application",
link: "https://refine.dev/docs",
link: "https://refine.dev/docs/examples",
showcase: ShowcaseHR,
label: "Examples",
},
{
name: "E-Commerce Application",
link: "https://refine.dev/docs",
link: "https://refine.dev/docs/examples",
showcase: ShowcaseECommerce,
label: "Examples",
},
{
name: "DevOps Dashboard",
link: "https://refine.dev/docs",
link: "https://refine.dev/docs/examples",
showcase: ShowcaseDevOps,
dark: true,
label: "Examples",
},
];

0 comments on commit beab53a

Please sign in to comment.