Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
5737b57
feat: initial commit of Algolia search integration
niallobrien Mar 26, 2026
ec5ff45
fix: enhance search functionality and improve search result handling
niallobrien Mar 27, 2026
c6c199c
fix: improve state management in Sidenav component
niallobrien Mar 27, 2026
ee0863d
fix: enhance search functionality by deduplicating merged search hits…
niallobrien Mar 30, 2026
b112b0d
fix: enhance QuickNav component with hash scrolling and improve searc…
niallobrien Mar 30, 2026
92eaa66
fix: enhance search functionality with improved decoding and anchor t…
niallobrien Mar 30, 2026
f18f80a
fix: enhance search functionality by improving page display title and…
niallobrien Mar 30, 2026
a02adb5
fix: refactor QuickNav component to use selector for content area and…
niallobrien Mar 30, 2026
2a2c9aa
fix: enhance search functionality with improved page display title ha…
niallobrien Mar 30, 2026
9c2d948
fix: add website breadcrumb segment to search results and enhance des…
niallobrien Mar 30, 2026
bd9a9ff
fix: enhance search results display by adding HTTP method tags
niallobrien Mar 31, 2026
3e21235
fix: improve alignment and centering for tag and search result method…
niallobrien Mar 31, 2026
611780a
fix: updated search feature with added types, and homepage adjustment…
niallobrien Mar 31, 2026
d35875d
fix: enhance search dialog and trigger with theme support
niallobrien Apr 1, 2026
f074812
fix: enhance Navbar layout and improve search dialog styling
niallobrien Apr 1, 2026
8ed6219
feat: add Footer component with styling and integrate into layout
niallobrien Apr 1, 2026
275a8a8
feat: enhance SearchDialog and SearchTrigger with compact variant sup…
niallobrien Apr 1, 2026
3a30c81
feat: improve Navbar and SearchDialog components with enhanced stylin…
niallobrien Apr 2, 2026
fc6f10d
feat: improve Navbar and Sidenav components with improved styling
niallobrien Apr 2, 2026
b144ad6
feat: enhance SearchDialog component with keyboard shortcut support a…
niallobrien Apr 2, 2026
fe793d6
fix: improve Navbar and Footer components with improved layout & mobi…
niallobrien Apr 2, 2026
3a1d00a
fix: improves types for Hero component buttons and resolves build issue
niallobrien Apr 2, 2026
bd2173d
fix: updates navbar height for tablet screens and cleans up homepage …
niallobrien Apr 2, 2026
409bf63
fix: update search test to check for undefined content property
niallobrien Apr 3, 2026
12d61c1
fix: remove development-only Algolia API key from environment configu…
niallobrien Apr 3, 2026
e12d966
fix: make buttons in Hero interface optional
niallobrien Apr 6, 2026
4aee831
fix: handle potential errors when decoding hash target in scrollToHas…
niallobrien Apr 6, 2026
94bf162
fix: enhance Algolia configuration validation and improve search valu…
niallobrien Apr 6, 2026
8824e79
fix: update import paths to use alias for utility functions
niallobrien Apr 6, 2026
7f55a0c
fix: refactor SearchTrigger to include dynamic keyboard hints
niallobrien Apr 6, 2026
6fa5e22
fix: enhance navbar styles for improved layout on larger screens and …
niallobrien Apr 6, 2026
b5a8b60
fix: enhance global navigation styles and improve mobile navbar struc…
niallobrien Apr 6, 2026
759f03e
fix: enhance mobile navbar item styling with dividers for improved la…
niallobrien Apr 6, 2026
5fd5f7d
fix: update footer background color and navbar link styles for improv…
niallobrien Apr 6, 2026
a34a5fb
fix: improve search dialog styles and enhance results layout for bett…
niallobrien Apr 6, 2026
44e4006
fix: adjust footer styles
niallobrien Apr 7, 2026
eca53f1
fix: minor update
niallobrien Apr 7, 2026
d651bdf
fix: update footer styles
niallobrien Apr 7, 2026
e0068b3
fix: design review feedback - update sidebar height and secondary nav…
niallobrien Apr 7, 2026
a274201
fix: resolvess sidebar bug due to new footer design
niallobrien Apr 7, 2026
5d8657f
fix: aligns the footer divider with the sidbar vertical divider
niallobrien Apr 7, 2026
c8d2540
fix: correct footer container grid column calculation
niallobrien Apr 7, 2026
4b0e691
fix: updates for footer overlap on homepage
niallobrien Apr 7, 2026
cf8a556
fix: improve background grid vignettes positioning and structure
niallobrien Apr 8, 2026
f4fa16f
fix: updates search icons
niallobrien Apr 8, 2026
9698433
fix: adjusts height for BackgroundGrid
niallobrien Apr 8, 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
12 changes: 11 additions & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,14 @@ NEXT_PUBLIC_CLOUDSMITH_API_URL="https://api.cloudsmith.io"
NEXT_PUBLIC_CLOUDSMITH_DOCS_URL="https://github.com/cloudsmith-io/cloudsmith-docs"
NEXT_PUBLIC_CLOUDSMITH_DOCS_BRANCH="main"
CLOUDSMITH_API_V1_URL="https://api.cloudsmith.io/swagger/?format=openapi"
CLOUDSMITH_API_V2_URL="https://api.cloudsmith.io/v2/openapi/?format=json"
CLOUDSMITH_API_V2_URL="https://api.cloudsmith.io/v2/openapi/?format=json"

NEXT_PUBLIC_ALGOLIA_APP_ID=
NEXT_PUBLIC_ALGOLIA_API_KEY=
NEXT_PUBLIC_ALGOLIA_DOCS_INDEX=Docs
NEXT_PUBLIC_ALGOLIA_INDEX=prod_WEBSITE
# NEXT_PUBLIC_ALGOLIA_INDEX=dev_WEBSITE

ALGOLIA_WRITE_KEY=
NEXT_PUBLIC_DOCS_SITE_ORIGIN=https://docs.cloudsmith.com
NEXT_PUBLIC_MARKETING_SITE_ORIGIN=https://cloudsmith.com
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,6 @@ npm-debug.log*
*.tsbuildinfo
next-env.d.ts

docs/graph.html
docs/graph.html

.history
Loading