From 024abe25482f7f96ffebb01ef9fbf04beef17dd0 Mon Sep 17 00:00:00 2001 From: Brandon Egger Date: Sun, 9 Apr 2023 23:28:16 -0500 Subject: [PATCH] add page title and quick link for survey to resources index --- src/components/ResourceTable.tsx | 2 +- src/pages/resources/index.tsx | 18 +++++++++++++++--- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/src/components/ResourceTable.tsx b/src/components/ResourceTable.tsx index bfb1076..77702e8 100644 --- a/src/components/ResourceTable.tsx +++ b/src/components/ResourceTable.tsx @@ -1,4 +1,4 @@ -import { type PlatformLink, type PaymentType, type AuditoryResource, type Skill, type SkillLevel, Manufacturer } from '@prisma/client'; +import { type PlatformLink, type PaymentType, type AuditoryResource, type Skill, type SkillLevel, type Manufacturer } from '@prisma/client'; import { CurrencyDollarIcon, ArrowPathRoundedSquareIcon } from '@heroicons/react/24/solid'; import { ClipboardDocumentListIcon } from '@heroicons/react/24/outline'; import Image from 'next/image'; diff --git a/src/pages/resources/index.tsx b/src/pages/resources/index.tsx index 7bbbaca..52f7cdc 100644 --- a/src/pages/resources/index.tsx +++ b/src/pages/resources/index.tsx @@ -1,4 +1,6 @@ import Head from "next/head"; +import { LinkIcon } from '@heroicons/react/20/solid'; +import Link from "next/link"; import { useRouter } from "next/router"; import ResourceTable from "~/components/ResourceTable"; import { api } from "~/utils/api"; @@ -28,10 +30,20 @@ const Resources = () => { -
-
- +
+
+

All Resources

+
+

Fill out the

+ + survey + + +

for specific resource recommendations.

+
+
);