diff --git a/web/src/App.js b/web/src/App.js index 6f9f1ff..eedfa39 100644 --- a/web/src/App.js +++ b/web/src/App.js @@ -4,7 +4,9 @@ import styled, { createGlobalStyle } from 'styled-components' import { useDeferredState } from './hooks/state' import { mobile } from './util/css' +import Welcome from './components/Welcome' import Footer from './components/Footer' +import { Cards, CardContainer } from './components/Cards' import GithubCard from './components/cards/GithubCard' import DomainCard from './components/cards/DomainCard' @@ -38,9 +40,8 @@ export default function App() { - {queryGiven && ( + {queryGiven ? ( - Result for {query} @@ -55,6 +56,8 @@ export default function App() { + ) : ( + )}