Skip to content

Commit

Permalink
Update page.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
FeimeiChen committed Mar 29, 2024
1 parent 2d0ca76 commit 6505687
Showing 1 changed file with 27 additions and 26 deletions.
53 changes: 27 additions & 26 deletions ui/src/app/about/page.tsx
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
import UHGroupingsInfo from "@/components/UHGroupingsInfo";
import UHGroupingsInfo from '@/components/UHGroupingsInfo';

const About = () => (
<main>
<UHGroupingsInfo h1Color={"text-uh-black"} h1Weight={"font-medium"}/>
<UHGroupingsInfo h1Color={'text-uh-black'} h1Weight={'font-medium'}/>
<div className="container pt-10 pb-10">
<h2 className="text-center text-xl font-bold text-text-color pb-7">GENERAL INFO</h2>
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 ">
<div className="col-span-1">
<h3 className="text-text-color text-lg pb-1">How do I request a new grouping?</h3>
<p className="pb-7">
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://uhawaii.atlassian.net/wiki/spaces/UHIAM/pages/13402308/
href="https://uhawaii.atlassian.net/wiki/spaces/UHIAM/pages/13402308/
UH+Groupings+Request+Form"
aria-label="A request form is available">A request form is available</a>.
aria-label="A request form is available">A request form is available
</a>.
</p>

<h3 className="text-text-color text-lg pb-1">Exactly what is a grouping?</h3>
<p className="pb-5">
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://uhawaii.atlassian.net/wiki/spaces/UHIAM/pages/13403213/UH+Groupings"
aria-label="General information about groupings is available">General information about
href="https://uhawaii.atlassian.net/wiki/spaces/UHIAM/pages/13403213/UH+Groupings"
aria-label="General information about groupings is available">General information about
groupings is available</a>.
A grouping&apos;s components include the Basis, Include, and Exclude lists.</p>

Expand Down Expand Up @@ -84,63 +85,63 @@ const About = () => (
<div className="col-span-1">
<p className="pb-4">React.js&nbsp;
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://react.dev/learn"
aria-label="Link to React.js Quickstart"
href="https://react.dev/learn"
aria-label="Link to React.js Quickstart"
>(Quickstart)</a></p>
<p className="pb-4">Next.js&nbsp;
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://nextjs.org/docs"
aria-label="Link to Next.js Introduction"
href="https://nextjs.org/docs"
aria-label="Link to Next.js Introduction"
>(Introduction)</a></p>
<p className="pb-4">Typescript&nbsp;
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://www.typescriptlang.org/docs/"
aria-label="Link to Typescript Guide"
href="https://www.typescriptlang.org/docs/"
aria-label="Link to Typescript Guide"
>(Guide)</a>
</p>
<p className="pb-4">Tailwind CSS&nbsp;
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://v2.tailwindcss.com/docs"
aria-label="Link to Tailwind CSS Guide"
href="https://v2.tailwindcss.com/docs"
aria-label="Link to Tailwind CSS Guide"
>(Guide)</a>
</p>
</div>
<div className="col-span-1">
<p className="pb-4">shadcn/ui&nbsp;
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://ui.shadcn.com/docs"
aria-label="Link to shadcn/ui Guide"
href="https://ui.shadcn.com/docs"
aria-label="Link to shadcn/ui Guide"
>(Guide)</a></p>
<p className="pb-4">Tanstack Table&nbsp;
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://tanstack.com/table/v8/docs/introduction"
aria-label="Link to Tanstack Table Introduction"
href="https://tanstack.com/table/v8/docs/introduction"
aria-label="Link to Tanstack Table Introduction"
>(Introduction)</a>
</p>
<p className="pb-4">Tanstack Query&nbsp;
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://tanstack.com/query/latest/docs/framework/react/overview"
aria-label="Link to Tanstack Query Guide"
href="https://tanstack.com/query/latest/docs/framework/react/overview"
aria-label="Link to Tanstack Query Guide"
>(Guide)</a>
</p>
<p className="pb-4">Iron Session&nbsp;
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://github.com/vvo/iron-session"
aria-label="Link to Iron Session GitHub"
href="https://github.com/vvo/iron-session"
aria-label="Link to Iron Session GitHub"
>(GitHub)</a>
</p>
</div>
<div className="col-span-1">
<p className="pb-4">Jest&nbsp;
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://jestjs.io/docs/getting-started"
aria-label="Link to Jest Introduction"
href="https://jestjs.io/docs/getting-started"
aria-label="Link to Jest Introduction"
>(Introduction)</a>
</p>
<p className="pb-4">React Testing Library&nbsp;
<a className="text-link-color hover:underline hover:text-link-hover-color"
href="https://testing-library.com/"
aria-label="Link to React Testing Library Documentation"
href="https://testing-library.com/"
aria-label="Link to React Testing Library Documentation"
>(Documentation)</a>
</p>
</div>
Expand Down

0 comments on commit 6505687

Please sign in to comment.