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

chore: remove link to removed key concepts page #1185

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 1 addition & 2 deletions locales/cn/component.navigation.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{
"About": "关于",
"Blog": "博客",
"FAQs": "常见问题解答",
"Articles": "",
"Key Concepts": "",
"Vega Papers": "VEGA 论文",
"Docs": "文档",
"Vega Docs": "",
Expand Down Expand Up @@ -41,6 +39,7 @@
"Brand assets": "品牌资产",
"Contribute to Vega": "为Vega做出贡献",
"Privacy & Cookie Policy": "隐私和 Cookie 政策",
"Key Concepts": "",
"Papers": "",
"Articles & Talks": "",
"Fairground": "测试网Fairground",
Expand Down
3 changes: 1 addition & 2 deletions locales/en/component.navigation.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{
"About": "About",
"Blog": "Blog",
"FAQs": "FAQs",
"Articles": "Articles",
"Key Concepts": "Key Concepts",
"Vega Papers": "Vega Papers",
"Docs": "Docs",
"Vega Docs": "Vega Docs",
Expand Down Expand Up @@ -41,6 +39,7 @@
"Brand assets": "Brand assets",
"Contribute to Vega": "Contribute to Vega",
"Privacy & Cookie Policy": "Privacy & Cookie Policy",
"Key Concepts": "Key Concepts",
"Papers": "Papers",
"Articles & Talks": "Articles & Talks",
"Fairground": "Fairground",
Expand Down
3 changes: 1 addition & 2 deletions locales/es/component.navigation.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{
"About": "Acerca de",
"Blog": "Blog",
"FAQs": "Preguntas frecuentes",
"Articles": "",
"Key Concepts": "Conceptos clave",
"Vega Papers": "Papers Vega",
"Docs": "Documentos",
"Vega Docs": "Documentos Vega",
Expand Down Expand Up @@ -41,6 +39,7 @@
"Brand assets": "Activos de marca",
"Contribute to Vega": "Contribuir a Vega",
"Privacy & Cookie Policy": "Política de privacidad y cookies",
"Key Concepts": "Conceptos clave",
"Papers": "Papeles",
"Articles & Talks": "",
"Fairground": "Recinto ferial",
Expand Down
3 changes: 1 addition & 2 deletions locales/ko/component.navigation.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{
"About": "",
"Blog": "블로그",
"FAQs": "",
"Articles": "",
"Key Concepts": "",
"Vega Papers": "",
"Docs": "",
"Vega Docs": "",
Expand Down Expand Up @@ -41,6 +39,7 @@
"Brand assets": "브랜드 자산",
"Contribute to Vega": "베가에 기여하기",
"Privacy & Cookie Policy": "개인정보보호 및 쿠키 정책",
"Key Concepts": "",
"Papers": "",
"Articles & Talks": "",
"Fairground": "",
Expand Down
3 changes: 1 addition & 2 deletions locales/ru/component.navigation.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{
"About": "",
"Blog": "Блог",
"FAQs": "",
"Articles": "",
"Key Concepts": "",
"Vega Papers": "",
"Docs": "",
"Vega Docs": "",
Expand Down Expand Up @@ -41,6 +39,7 @@
"Brand assets": "Активы бренда",
"Contribute to Vega": "Внести вклад в Vega",
"Privacy & Cookie Policy": "Политика конфиденциальности и использования файлов cookie",
"Key Concepts": "",
"Papers": "",
"Articles & Talks": "",
"Fairground": "",
Expand Down
3 changes: 1 addition & 2 deletions locales/vi/component.navigation.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{
"About": "Về Vega",
"Blog": "Blog",
"FAQs": "FAQs",
"Articles": "",
"Key Concepts": "Các khái niệm chính",
"Vega Papers": "Tài liệu Vega",
"Docs": "Tài liệu",
"Vega Docs": "Tài liệu của Vega",
Expand Down Expand Up @@ -41,6 +39,7 @@
"Brand assets": "Tài sản thương hiệu",
"Contribute to Vega": "Đóng góp cho Vega",
"Privacy & Cookie Policy": "Chính sách quyền riêng tư & cookie",
"Key Concepts": "Các khái niệm chính",
"Papers": "Tài liệu",
"Articles & Talks": "",
"Fairground": "Fairground",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navigation/Navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Navigation = () => {
return (
<nav>
<ul className="text-lg tracking-wide lg:flex">
<Dropdown title={t('About')} link="/key-concepts/">
<Dropdown title={t('About')} link="/papers/">
<About />
</Dropdown>
<MainItem link="https://docs.vega.xyz/" text={t('Docs')} />
Expand Down
1 change: 0 additions & 1 deletion src/components/Navigation/items/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const About = () => {
const { t } = useTranslation('component.navigation')
return (
<NavigationList>
<NavigationItem text={t('Key Concepts')} link="/key-concepts/" />
<NavigationItem text={t('Papers')} link="/papers/" />
<NavigationItem text={t('Articles & Talks')} link="/articles/" />
<NavigationItem text={t('Blog')} link="https://blog.vega.xyz" />
Expand Down
Loading