From 48f67cda816b02374979655129a59a3e8213501c Mon Sep 17 00:00:00 2001 From: Brandon Egger Date: Wed, 15 Mar 2023 21:57:18 -0500 Subject: [PATCH] possible design for skill levels --- src/components/ResourceTable.tsx | 44 +++++++++++++++++++++++++++----- src/pages/index.tsx | 5 ++-- 2 files changed, 40 insertions(+), 9 deletions(-) diff --git a/src/components/ResourceTable.tsx b/src/components/ResourceTable.tsx index fe6036d..5aefdf5 100644 --- a/src/components/ResourceTable.tsx +++ b/src/components/ResourceTable.tsx @@ -39,8 +39,30 @@ const ResourceInfo = () => { const ResourceDescription = () => { return ( -
-

Description here

+
+

App with four different exercises that range from selecting the spoken word alone, in a senter (either in first, medial, or last position), and with or without background noise.

+
+ ) +} + +const ResourceSkills = () => { + const SkillRanking = () => { + return ( +
+
+
+
+ ) + } + + return ( +
+ +
+
    +
  • test
  • +
+
) } @@ -49,10 +71,13 @@ const ResourceTable = () => { const ResourceEntry = () => { return ( - + - + + + + @@ -61,15 +86,20 @@ const ResourceTable = () => { return(
-
- +
+
- +
+ Resource + + Skills + + Description diff --git a/src/pages/index.tsx b/src/pages/index.tsx index efdb18a..4efb5ce 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -16,8 +16,9 @@ const Home: NextPage = () => {
-

under construction

- +
+ +
);