diff --git a/documentation/src/assets/examples.tsx b/documentation/src/assets/examples.tsx index b1937d76e2e4..6787adc1d088 100644 --- a/documentation/src/assets/examples.tsx +++ b/documentation/src/assets/examples.tsx @@ -4,6 +4,21 @@ import React from "react"; import { Examples } from "../types/examples"; export const SHOW_CASES: Examples = [ + { + title: "refine CRM Application", + description: + "Comprehensive CRM App developed using refine, Ant Design and GraphQL. It includes features like authentication, a dashboard, and over 10 CRUD interfaces ranging from charts and sales kanban boards to user administration.", + image: "/examples/crm-banner.jpg", + image2x: "/examples/crm-banner.jpg", + buttons: [ + { + text: "Demo", + link: "https://example.crm.refine.dev/", + icon: (props) => , + }, + ], + source: "https://github.com/refinedev/refine/tree/master/examples/app-crm", + }, { title: "Finefoods Ant Design Admin Panel", description: @@ -49,21 +64,6 @@ export const SHOW_CASES: Examples = [ ], source: "https://github.com/refinedev/refine/tree/master/examples/store", }, - { - title: "Finefoods Storefront", - description: - "Headless storefront example built with Tailwind CSS. Features product listings and a simple shopping cart. Supports SSR with NextJS.", - image: "/examples/food-delivery.jpg", - image2x: "/examples/food-delivery2x.jpg", - buttons: [ - { - text: "Demo", - link: "https://example.refine.dev", - icon: (props) => , - }, - ], - source: "https://github.com/refinedev/refine/tree/master/examples/finefoods-client", - }, ]; export const EXAMPLES: Examples = [ @@ -81,6 +81,21 @@ export const EXAMPLES: Examples = [ ], source: "https://github.com/refinedev/real-world-example", }, + { + title: "Finefoods Storefront", + description: + "Headless storefront example built with Tailwind CSS. Features product listings and a simple shopping cart. Supports SSR with NextJS.", + image: "/examples/food-delivery.jpg", + image2x: "/examples/food-delivery2x.jpg", + buttons: [ + { + text: "Demo", + link: "https://example.refine.dev", + icon: (props) => , + }, + ], + source: "https://github.com/refinedev/refine/tree/master/examples/finefoods-client", + }, { title: "Win95 Style Admin Panel", description: diff --git a/documentation/src/assets/integration-icons/hygraph.tsx b/documentation/src/assets/integration-icons/hygraph.tsx index b07cb2a57dc1..589ea5a401a1 100644 --- a/documentation/src/assets/integration-icons/hygraph.tsx +++ b/documentation/src/assets/integration-icons/hygraph.tsx @@ -1,3 +1,4 @@ +import clsx from "clsx"; import * as React from "react"; import { SVGProps } from "react"; @@ -9,10 +10,11 @@ const SvgHygraph = (props: SVGProps) => ( fill="none" xmlns="http://www.w3.org/2000/svg" {...props} + className={clsx("text-[#081026] dark:text-white", props.className)} > ); diff --git a/documentation/static/examples/crm-banner.jpg b/documentation/static/examples/crm-banner.jpg new file mode 100644 index 000000000000..8a26fc91cc20 Binary files /dev/null and b/documentation/static/examples/crm-banner.jpg differ