From b911cf8570ad4f339337bd3489370495de033a75 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Wed, 28 Feb 2024 21:25:19 +0100 Subject: [PATCH] Create gift-card.js --- .../src/components/use-case/gift-card.js | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 documentation/src/components/use-case/gift-card.js diff --git a/documentation/src/components/use-case/gift-card.js b/documentation/src/components/use-case/gift-card.js new file mode 100644 index 00000000..5b00fd58 --- /dev/null +++ b/documentation/src/components/use-case/gift-card.js @@ -0,0 +1,41 @@ +import React from "react"; +import Link from "@docusaurus/Link"; + +export const GiftCard = () => { + return ( +
+
+
+
+ IF YOU’RE ALREADY USING refine, +
+ SHARE YOUR USECASE &{" "} + INSPIRE OTHERS +
+
+ We are very happy to see how people are building great + things with refine. Share your use-case + to get listed on the showcase page and receive{" "} + $100 Amazon Gift card. +
+ + ADD YOURS & + WIN + +
+
+ Giftcard +
+
+
+ ); +};