Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion packages/app-webdir-ui/src/QuickLinks/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import React from "react";

import { QuickLinksTemplate } from "./index.styles";

/**
* QuickLinks component displays a list of commonly accessed ASU resources
*/
const QuickLinks = () => {
const collagesAndSchoolsMessage = "ASU's colleges and schools";
return (
Expand All @@ -17,7 +20,7 @@ const QuickLinks = () => {
{collagesAndSchoolsMessage}
</a>
<a href="https://degrees.asu.edu/">Search majors and degree programs</a>
<a href="https://webapp4.asu.edu/catalog/classlist">ASU class search</a>
<a href="https://catalog.apps.asu.edu">ASU class search</a>
<a href="https://search.lib.asu.edu/discovery/search?vid=01ASU_INST:01ASU">
ASU Library One search
</a>
Expand All @@ -29,3 +32,4 @@ const QuickLinks = () => {
};

export { QuickLinks };