Skip to content

Commit

Permalink
Merge pull request #20 from EpicsDAO/fix/link
Browse files Browse the repository at this point in the history
fix links
  • Loading branch information
KishiTheMechanic authored Nov 24, 2023
2 parents 801b908 + a9cae4a commit 685e230
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/components/pages/common/CTASectionRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function CTASectionRow() {

<div className="mt-10 flex items-center gap-x-6 lg:mt-0 lg:flex-shrink-0">
<Link
href="/doc/general/quickstart"
href="/doc/quickstart/latitude"
className="bg-gray-900 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-gray-700 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 dark:bg-gray-200 dark:text-gray-900 dark:hover:bg-gray-300"
>
{t('common:CTASectionRow.button')}
Expand Down
20 changes: 10 additions & 10 deletions src/config/navs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ export const defaultMainNav = [
},
{
name: 'common:navs.defaultMainNav.quickstart',
href: '/doc/quickstart/latitude',
href: '/doc/quickstart/latitude/',
},
{
name: 'common:navs.defaultMainNav.enterprise',
href: '/enterprise',
href: '/enterprise/',
},
{
name: 'common:navs.defaultMainNav.news',
Expand All @@ -39,11 +39,11 @@ export const commonFooterNav = [
},
{
name: 'common:navs.commonFooterNav.quickstart',
href: '/doc/quickstart/latitude',
href: '/doc/quickstart/latitude/',
},
{
name: 'common:navs.commonFooterNav.enterprise',
href: '/enterprise',
href: '/enterprise/',
},
{
name: 'common:navs.commonFooterNav.news',
Expand Down Expand Up @@ -80,12 +80,12 @@ export const docMenuNav = [
children: [
{
name: 'doc:menuNav.quickstart.latitude',
href: '/doc/quickstart/latitude',
href: '/doc/quickstart/latitude/',
icon: RocketLaunchIcon,
},
{
name: 'doc:menuNav.quickstart.edgevana',
href: '/doc/quickstart/edgevana',
href: '/doc/quickstart/edgevana/',
icon: RocketLaunchIcon,
},
],
Expand All @@ -95,22 +95,22 @@ export const docMenuNav = [
children: [
{
name: 'doc:menuNav.tutorial.chapter1',
href: '/doc/tutorial/chapter1',
href: '/doc/tutorial/chapter1/',
icon: CogIcon,
},
{
name: 'doc:menuNav.tutorial.chapter2',
href: '/doc/tutorial/chapter2',
href: '/doc/tutorial/chapter2/',
icon: CircleStackIcon,
},
{
name: 'doc:menuNav.tutorial.chapter3',
href: '/doc/tutorial/chapter3',
href: '/doc/tutorial/chapter3/',
icon: CloudIcon,
},
{
name: 'doc:menuNav.tutorial.chapter4',
href: '/doc/tutorial/chapter4',
href: '/doc/tutorial/chapter4/',
icon: ChartBarIcon,
},
],
Expand Down

0 comments on commit 685e230

Please sign in to comment.