Update index.tsx

This commit is contained in:
Stefan Pejcic 2024-02-28 21:34:09 +01:00 committed by GitHub
parent 547e5d8779
commit f37f339ad9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,8 +14,8 @@ export const UseCases = () => {
</Head>
<div className="container max-w-[1040px]">
<h1 className="font-montserrat text-[#1890FF] text-center my-8">
YOUR WORK{" "}
<span className="font-normal">OUR INSPIRATION</span>
OpenPanel{" "}
<span className="font-normal">DOCUMENTATION</span>
</h1>
<div className="grid grid-cols-1 md:grid-cols-2 gap-8">
{USE_CASES.map((useCase) => (
@ -24,7 +24,7 @@ export const UseCases = () => {
className="flex flex-col justify-between"
>
<div>
<Link to={`/use-cases/${useCase.route}`}>
<Link to={`/docs/${useCase.route}/intro`}>
<img
src={useCase.thumbImgURL}
alt={useCase.title}
@ -43,7 +43,7 @@ export const UseCases = () => {
<Link
className="shadow-startTiles appearance-none flex items-center justify-center mt-2 mb-4 no-underline font-bold font-montserrat text-sm h-8 w-44 text-[#1890FF] text-center bg-white rounded-[4px] cursor-pointer border border-solid border-[#EDEDEF]"
to={`/use-cases/${useCase.route}`}
to={`/docs/${useCase.route}/intro`}
>
Read more
</Link>