Skip to content
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

Search page #73

Merged
merged 18 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
b03ea51
feat: base search
Emmanuel-Develops Dec 18, 2024
c24dadc
feat: link pills, speakers and topic cards to search
Emmanuel-Develops Dec 20, 2024
6008574
feat: mobile responsiveness
Emmanuel-Develops Dec 24, 2024
bfc2341
fix: cleanups and loader
Emmanuel-Develops Dec 24, 2024
c2fae98
fix: sort fields and query
Emmanuel-Develops Dec 24, 2024
b030f4d
refactor: switch useSearch to context from hook
Emmanuel-Develops Jan 7, 2025
ee6782e
fix: prevent deopt to CSR with suspense
Emmanuel-Develops Jan 7, 2025
0b48309
feat: clickable pills either as link or function
Emmanuel-Develops Jan 7, 2025
908695c
feat: loaders
Emmanuel-Develops Jan 7, 2025
ce406f5
fix: use tagsDetailed from rebase
Emmanuel-Develops Jan 7, 2025
a250600
fix: search behaviour logic and search results ui
Emmanuel-Develops Jan 10, 2025
10902c1
refactor: break search box into mobile component, standalone mobile f…
Emmanuel-Develops Jan 10, 2025
12023bc
fix(hydration-error): Pills as buttons on featured transcripts
Emmanuel-Develops Jan 13, 2025
729346b
fix(review-fixes): source naming, result card UI, pagination, readme,…
Emmanuel-Develops Jan 14, 2025
233728b
fix(review-fixes): searchbox clear on page navigation and get topic t…
Emmanuel-Develops Jan 15, 2025
4b1fff9
feat(optimizations): too many unnecessary prefetch requests, remove b…
Emmanuel-Develops Jan 15, 2025
adc695e
fix(search): prevent overflow on search results, add mapped topic nam…
Emmanuel-Develops Jan 15, 2025
6cc9c6d
fix(mobile): quality of life improvements
Emmanuel-Develops Jan 15, 2025
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
4 changes: 4 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/** @type {import('next').NextConfig} */
import exp from "constants";
import { withContentlayer } from "next-contentlayer2";
const nextConfig = {
rewrites: async () => {
Expand Down Expand Up @@ -49,6 +50,9 @@ const nextConfig = {
},
],
},
experimental: {
missingSuspenseWithCSRBailout: false,
},
};

export default withContentlayer(nextConfig);
Loading