Delete documentation/src/components/use-case directory

This commit is contained in:
Stefan Pejcic 2024-02-29 12:01:59 +01:00 committed by GitHub
parent ca4453ac90
commit 362e2e7710
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 62 deletions

View File

@ -1,21 +0,0 @@
import React from "react";
import Layout from "@theme/Layout";
import Head from "@docusaurus/Head";
const UseCaseDetail = (props) => {
const { data } = props;
return (
<Layout>
<Head title={`${data.title} | refine`}>
<html data-page="use-cases-detail" data-customized="true" />
</Head>
<div className="container max-w-[1040px]">
<h1>Use Case Detail</h1>
<pre>{JSON.stringify(props, null, 2)}</pre>
</div>
</Layout>
);
};
export default UseCaseDetail;

View File

@ -1,41 +0,0 @@
import React from "react";
import Link from "@docusaurus/Link";
export const GiftCard = () => {
return (
<div className="bg-[#eeeef0] p-6 rounded-lg shadow-startTiles">
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4">
<div className="flex flex-col gap-4 order-2 sm:order-1">
<div className="font-montserrat font-medium text-[#242436]">
IF YOURE ALREADY USING <strong>refine</strong>,
<br />
<strong>SHARE</strong> YOUR USECASE &{" "}
<strong>INSPIRE</strong> OTHERS
</div>
<div className="font-montserrat text-[#242436] text-sm">
We are very happy to see how people are building great
things with <strong>refine</strong>. Share your use-case
to get listed on the showcase page and receive{" "}
<strong>$100 Amazon Gift card</strong>.
</div>
<Link
to="https://refinedev.typeform.com/to/Ypm6r6oj"
target="_blank"
rel="noopener noreferrer"
className="shadow-startTiles appearance-none flex items-center justify-center no-underline font-bold font-montserrat text-sm h-8 w-44 text-white text-center bg-gradient-to-l from-[#1890FF] to-[#47EBF5] border-0 rounded-[4px] cursor-pointer"
>
ADD YOURS <span className="mx-1 font-normal">&</span>
WIN
</Link>
</div>
<div className="flex justify-center order-1 sm:order-2">
<img
className="h-[170px] ml-0 sm:ml-12"
src="/landing/giftcard.png"
alt="Giftcard"
/>
</div>
</div>
</div>
);
};