Skip to content

Commit 2f4e2dc

Browse files
feat(docs): add 2026 refine xmax logo
1 parent 028269d commit 2f4e2dc

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

documentation/src/refine-theme/common-header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { TopAnnouncement } from "./top-announcement";
1313

1414
import { LandingGithubStarButton } from "./landing-github-star-button";
1515
import SearchBar from "../theme/SearchBar";
16-
import { RefineLogoIcon } from "./icons/refine-logo";
16+
import { RefineLogoXmas } from "./icons/refine-logo-xmas";
1717

1818
type Props = {
1919
hasSticky?: boolean;
@@ -82,7 +82,7 @@ export const CommonHeader = ({
8282
>
8383
<div className={clsx("w-[130px]", "landing-lg:w-[200px]")}>
8484
<Link to="/" onContextMenu={openFigma}>
85-
<RefineLogoIcon className="text-gray-900 dark:text-gray-0" />
85+
<RefineLogoXmas className="text-gray-900 dark:text-gray-0" />
8686
</Link>
8787
</div>
8888
<button

documentation/src/refine-theme/doc-refine-logo.tsx

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import Link from "@docusaurus/Link";
22
import clsx from "clsx";
33
import React from "react";
44
import { openFigma } from "../utils/open-figma";
5+
import { RefineLogoXmas } from "./icons/refine-logo-xmas";
56

67
interface Props {
78
className?: string;
@@ -23,16 +24,7 @@ export const DocRefineLogo = ({ className }: Props) => {
2324
className={clsx("no-underline", "flex items-center gap-2")}
2425
onContextMenu={openFigma}
2526
>
26-
<Logo className="text-refine-cyan dark:text-refine-cyan-alt" />
27-
<span
28-
className={clsx(
29-
"text-gray-1000 dark:text-gray-0",
30-
"text-base",
31-
"font-semibold",
32-
)}
33-
>
34-
Refine
35-
</span>
27+
<RefineLogoXmas className="text-gray-900 dark:text-gray-0" />
3628
</Link>
3729
<span
3830
className={clsx(

0 commit comments

Comments
 (0)