From 9b748c83eb65e884cb3eefad4714eb19349586fe Mon Sep 17 00:00:00 2001 From: Brandon Egger Date: Wed, 15 Mar 2023 22:20:36 -0500 Subject: [PATCH] basic table layout setup --- src/components/ResourceTable.tsx | 38 +++++++++++++++++++++++--------- 1 file changed, 28 insertions(+), 10 deletions(-) diff --git a/src/components/ResourceTable.tsx b/src/components/ResourceTable.tsx index 5aefdf5..bbb804f 100644 --- a/src/components/ResourceTable.tsx +++ b/src/components/ResourceTable.tsx @@ -1,5 +1,6 @@ import { PaymentType } from '@prisma/client'; import { CurrencyDollarIcon, ArrowPathRoundedSquareIcon } from '@heroicons/react/24/solid' +import { ClipboardDocumentListIcon } from '@heroicons/react/24/outline' import Image from 'next/image'; import Link from 'next/link'; @@ -28,6 +29,7 @@ const ResourceInfo = () => {
+

Advanced Bionics, LLC

Word Success

Apple and Android

@@ -48,21 +50,38 @@ const ResourceDescription = () => { const ResourceSkills = () => { const SkillRanking = () => { return ( -
-
+
+
+

Beginner

+
+
+

Intermediate

) } + const Skill = ({label}: {label:string}) => { + return ( +
  • + +
    +

    {label}

    +
    +
  • + ) + } + return ( -
    - -
    -
      -
    • test
    • +
      +
      +
        + + +
      +
      ) } @@ -90,7 +109,7 @@ const ResourceTable = () => { - - - +
      + Resource @@ -107,8 +126,7 @@ const ResourceTable = () => {