-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[next] Fixes #1484: Re-Adds the Search page component #1621
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm fine with this, since it just moves some stuff around
Looks like Darkmode will need to be fixed for Searchpage. When this lands we'll have to open another issue for that. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One minor thing and this is good. If you want to file an issue to fix that later (it's in other pages too), that's also fine.
<> | ||
<Head> | ||
<title>Search</title> | ||
<meta property="og:title" content="Telescope" key="title" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't dong anything there, let's remove and have it happen in _document.tsx
…eca-CDOT#1621) * Added Search component and moved search.tsx contents to SearchPage component * Added Head, Darkmode Toggle, and Banner
Issue This PR Addresses
Fixes #1484
Type of Change
Description
This PR adds
search.tsx
, a page which will render the<SearchPage />
component. It also injects SEO along with the banner and head components.EDIT: The
<SearchPage />
component was just land-ho'd, so I merged master into this PR, renamed thesearch.tsx
component @c3ho toSearchPage
, added SEO to our search page, the banner, head, and darkmode toggle button.Just waiting on<SearchPage />
to be finished then I can test this further.CI/CD will fail as the<SearchPage />
component isn't yet implemented, when it gets released I'll (try to remember to) come back and test this further.How to test
Pull the PR and navigate to http://localhost:8000/search.
Checklist