File tree Expand file tree Collapse file tree 6 files changed +48
-5
lines changed Expand file tree Collapse file tree 6 files changed +48
-5
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "added" : {
3+ "tools.claudeContext" : " Claude Context"
4+ },
5+ "modified" : {},
6+ "deleted" : {}
7+ }
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ import {
1212 CLOUD_SIGNUP_LINK ,
1313 GITHUB_MILVUS_BACKUP_LINK ,
1414 GITHUB_VTS_LINK ,
15+ GITHUB_DEEP_SEARCHER_LINK ,
16+ GITHUB_CLAUDE_CONTEXT_LINK ,
1517} from '@/consts/links' ;
1618import { RightTopArrowIcon } from '@/components/icons' ;
1719import { SocialMedias , SocialMediasCN } from '../socialMedias' ;
@@ -100,6 +102,14 @@ const Footer = (props: Props) => {
100102 name : t ( 'header:footer.tools.vts' ) ,
101103 to : GITHUB_VTS_LINK ,
102104 } ,
105+ {
106+ name : t ( 'header:tools.deepSearcher' ) ,
107+ to : GITHUB_DEEP_SEARCHER_LINK ,
108+ } ,
109+ {
110+ name : t ( 'header:tools.claudeContext' ) ,
111+ to : GITHUB_CLAUDE_CONTEXT_LINK ,
112+ } ,
103113 ] ,
104114 } ,
105115 {
@@ -236,7 +246,9 @@ const Footer = (props: Props) => {
236246 rel = "noopener noreferrer"
237247 >
238248 { child . name }
239- { child . isExternal && < RightTopArrowIcon /> }
249+ < span className = "grow-0 shrink-0 basis-[14px] h-[14px]" >
250+ < RightTopArrowIcon />
251+ </ span >
240252 </ a >
241253 </ li >
242254 ) ;
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ import {
1818 GITHUB_DEEP_SEARCHER_LINK ,
1919 DISCORD_INVITE_URL ,
2020 GITHUB_MILVUS_COMMUNITY_LINK ,
21+ GITHUB_CLAUDE_CONTEXT_LINK ,
2122} from '@/consts/links' ;
2223import { MILVUS_OFFICE_HOURS_URL } from '@/consts/externalLinks' ;
2324import { LanguageSelector } from '@/components/language-selector' ;
@@ -112,6 +113,11 @@ export default function DesktopHeader(props: Props) {
112113 link : GITHUB_DEEP_SEARCHER_LINK ,
113114 rel : 'noopener noreferrer' ,
114115 } ,
116+ {
117+ label : t ( 'tools.claudeContext' ) ,
118+ link : GITHUB_CLAUDE_CONTEXT_LINK ,
119+ rel : 'noopener noreferrer' ,
120+ } ,
115121 ] ,
116122 } ,
117123 { label : t ( 'blog' ) , link : getLocalePath ( '/blog' ) } ,
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ import {
2424 GITHUB_MILVUS_LINK ,
2525 DISCORD_INVITE_URL ,
2626 GITHUB_MILVUS_COMMUNITY_LINK ,
27+ GITHUB_CLAUDE_CONTEXT_LINK ,
2728} from '@/consts/links' ;
2829import { MILVUS_OFFICE_HOURS_URL } from '@/consts/externalLinks' ;
2930import { RightTopArrowIcon } from '../icons' ;
@@ -204,30 +205,44 @@ export default function MobileHeader(props: {
204205 { t ( 'tools.cli' ) }
205206 < RightTopArrowIcon />
206207 </ a >
207- < a
208+ < Link
208209 href = "/tools/sizing"
209210 className = { classes . externalLinkButton }
210211 >
211- { t ( 'tools.sizing' ) } < RightTopArrowIcon />
212- </ a >
212+ { t ( 'tools.sizing' ) }
213+ </ Link >
213214 < a
214215 href = { GITHUB_MILVUS_BACKUP_LINK }
215216 className = { classes . externalLinkButton }
217+ target = "_blank"
218+ rel = "noopener noreferrer"
216219 >
217220 { t ( 'tools.backup' ) } < RightTopArrowIcon />
218221 </ a >
219222 < a
220223 href = { GITHUB_VTS_LINK }
221224 className = { classes . externalLinkButton }
225+ target = "_blank"
226+ rel = "noopener noreferrer"
222227 >
223228 { t ( 'tools.vts' ) } < RightTopArrowIcon />
224229 </ a >
225230 < a
226231 href = { GITHUB_DEEP_SEARCHER_LINK }
227232 className = { classes . externalLinkButton }
233+ target = "_blank"
234+ rel = "noopener noreferrer"
228235 >
229236 { t ( 'tools.deepSearcher' ) } < RightTopArrowIcon />
230237 </ a >
238+ < a
239+ href = { GITHUB_CLAUDE_CONTEXT_LINK }
240+ className = { classes . externalLinkButton }
241+ target = "_blank"
242+ rel = "noopener noreferrer"
243+ >
244+ { t ( 'tools.claudeContext' ) } < RightTopArrowIcon />
245+ </ a >
231246 </ List >
232247 </ Collapse >
233248
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ export const GITHUB_ATTU_LINK = 'https://github.com/zilliztech/attu';
1414export const GITHUB_VTS_LINK = 'https://github.com/zilliztech/vts' ;
1515export const GITHUB_DEEP_SEARCHER_LINK =
1616 'https://github.com/zilliztech/deep-searcher' ;
17+ export const GITHUB_CLAUDE_CONTEXT_LINK =
18+ 'https://github.com/zilliztech/claude-context' ;
1719export const GITHUB_MILVUS_CLI_LINK =
1820 'https://github.com/zilliztech/milvus_cli' ;
1921export const GITHUB_MILVUS_BACKUP_LINK =
Original file line number Diff line number Diff line change 1919 "sizing" : " Sizing Tool" ,
2020 "backup" : " Milvus Backup" ,
2121 "vts" : " VTS" ,
22- "deepSearcher" : " Deep Searcher"
22+ "deepSearcher" : " Deep Searcher" ,
23+ "claudeContext" : " Claude Context"
2324 },
2425 "blog" : " Blog" ,
2526 "community" : {
You can’t perform that action at this time.
0 commit comments