Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
96abe99
feat: implement handle lookup core business logic
claude Mar 25, 2026
ceba47b
fix: resolve Google Fonts network error blocking production build
claude Mar 25, 2026
6e68b9a
Overhaul handle lookup: Sherlock data, homepage SSE, category filters…
claude Mar 25, 2026
87b93c1
Add filters, pagination, rate limiting, business category, and UX polish
claude Mar 25, 2026
b5d4871
Fix double divider, double chevron, business category, duplicate pill…
claude Mar 25, 2026
d42372e
Responsive layout, subtle animations, idle/empty states, UI polish
claude Mar 25, 2026
e83cbc7
Fix card style, restore padding, clean category overflow, progress→pe…
claude Mar 25, 2026
9b9624c
Clerk Billing: auth-gated lookups, Pro plan, upgrade flow, PricingTable
claude Mar 25, 2026
6ea2495
feat: integrate Clerk Billing with full auth and rate limiting
claude Mar 25, 2026
e854c7b
refactor: clean pricing page, smarter loading states, tighter upgrade…
claude Mar 25, 2026
ccb1e96
refactor: unified upgrade drawer, redirect auth flow, clean empty states
claude Mar 25, 2026
39aaef6
refactor: remove blogs section, update header and layout components, …
hyepr Mar 25, 2026
1f69503
refactor: remove Polar webhook integration and related components; up…
hyepr Mar 25, 2026
ecff01f
refactor: migrate JsonLd component to app directory; update imports a…
hyepr Mar 26, 2026
2e08bc8
refactor: update Hero and LookupForm components; remove LookupResults…
hyepr Mar 26, 2026
727cda9
refactor: add API link to navigation menu for improved accessibility
hyepr Mar 26, 2026
30e6417
Refactor code for improved readability and consistency across components
hyepr Mar 26, 2026
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
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ coverage
pnpm-lock.yaml
.agents
.claude
.source
content
97 changes: 0 additions & 97 deletions components/blogs-section.tsx

This file was deleted.

6 changes: 6 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ import { createMDX } from "fumadocs-mdx/next";

const nextConfig: NextConfig = {
/* config options here */
experimental: {
serverActions: {
allowedOrigins: ["localhost:3000", "*.app.github.dev"],
},
turbopackUseSystemTlsCerts: true,
},
};

const withMDX = createMDX();
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@
"fumadocs-core": "^16.6.17",
"fumadocs-mdx": "^14.2.10",
"fumadocs-ui": "^16.6.17",
"geist": "^1.7.0",
"initials": "^3.1.2",
"input-otp": "^1.4.2",
"lucide-react": "^0.577.0",
"motion": "^12.38.0",
"next": "16.1.7",
"next-themes": "^0.4.6",
"nuqs": "^2.8.9",
Expand Down
Loading