diff --git a/documentation/src/pages/use-cases/index.tsx b/documentation/src/pages/use-cases/index.tsx index c95052ff..a7219b7e 100644 --- a/documentation/src/pages/use-cases/index.tsx +++ b/documentation/src/pages/use-cases/index.tsx @@ -1,8 +1,63 @@ import React from "react"; -import { Redirect } from "@docusaurus/router"; +import Layout from "@theme/Layout"; +import Link from "@docusaurus/Link"; +import Head from "@docusaurus/Head"; + +import { GiftCard } from "../../components/use-case/gift-card"; +import USE_CASES from "../../assets/use-cases"; export const UseCases = () => { - return ; + return ( + + + + +
+

+ YOUR WORK{" "} + OUR INSPIRATION +

+
+ {USE_CASES.map((useCase) => ( +
+
+ + {useCase.title} + +
+ {useCase.title} +
+
+
+ + + Read more + +
+ ))} +
+
+
+ +
+
+
+ + ); }; export default UseCases;