From 19c7bc8d737a7bf6310a1b366c0f4eadb538e37e Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Wed, 28 Feb 2024 21:24:14 +0100 Subject: [PATCH] Update index.tsx --- documentation/src/pages/use-cases/index.tsx | 59 ++++++++++++++++++++- 1 file changed, 57 insertions(+), 2 deletions(-) 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;