Skip to content

Commit

Permalink
Feat/#14 programs list page (#47)
Browse files Browse the repository at this point in the history
* add submission layout

* add some components

* add All Programs layout

* skeleton

* cleanup + add linking for programs

* remove sidemenu logic for PR

* remove program list and search func for PR

* fix type error

* mmove types around

* fix build

* clean import

---------

Co-authored-by: Ciaran Schutte <[email protected]>
  • Loading branch information
2 people authored and justincorrigible committed Aug 10, 2023
1 parent 95f7e71 commit 7eeb551
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
*/
'use client';

import { AuthProvider } from '@/global/utils/auth';
import { ReactNode } from 'react';
import { QueryClient, QueryClientProvider } from 'react-query';
import { AuthProvider } from '@/global/utils/auth';
import Header from './components/Header';
import ThemeProvider from './components/ThemeProvider';
import { css } from '@/lib/emotion';
Expand Down
8 changes: 4 additions & 4 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
*/
'use client';

import { ComponentType } from 'react';
import Image from 'next/image';
import urlJoin from 'url-join';
import { DataCallout, Link, Typography, overtureLogo } from '@icgc-argo/uikit';
import { getAppConfig } from '@/global/config';
import { css, useTheme } from '@/lib/emotion';
import { DataCallout, Link, Typography, overtureLogo } from '@icgc-argo/uikit';
import Image from 'next/image';
import { ComponentType } from 'react';
import urlJoin from 'url-join';
import Hero from './components/Hero';

const { DOCS_URL_ROOT } = getAppConfig();
Expand Down

0 comments on commit 7eeb551

Please sign in to comment.