aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/footer.tsx
diff options
context:
space:
mode:
authorFred Carlsen <fred@sjelfull.no>2018-12-15 06:03:45 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-15 06:03:45 +0800
commitb9fa158092c0179d41f5cf7b4f62eec95dd7f4f6 (patch)
treefd31ed0b062a50dc4fc775b99b344e283dcd9f86 /packages/website/ts/@next/components/footer.tsx
parent8570616d9765584e91c2fcfced398a6289536464 (diff)
downloaddexon-sol-tools-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar
dexon-sol-tools-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar.gz
dexon-sol-tools-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar.bz2
dexon-sol-tools-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar.lz
dexon-sol-tools-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar.xz
dexon-sol-tools-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar.zst
dexon-sol-tools-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.zip
Update links and routes
Diffstat (limited to 'packages/website/ts/@next/components/footer.tsx')
-rw-r--r--packages/website/ts/@next/components/footer.tsx15
1 files changed, 8 insertions, 7 deletions
diff --git a/packages/website/ts/@next/components/footer.tsx b/packages/website/ts/@next/components/footer.tsx
index bc441499d..5e5106ff3 100644
--- a/packages/website/ts/@next/components/footer.tsx
+++ b/packages/website/ts/@next/components/footer.tsx
@@ -7,6 +7,7 @@ import styled from 'styled-components';
import { Logo } from 'ts/@next/components/logo';
import { Column, FlexWrap, WrapGrid } from 'ts/@next/components/newLayout';
import { NewsletterForm } from 'ts/@next/components/newsletter_form';
+import { WebsitePaths } from 'ts/types';
interface LinkInterface {
text: string;
@@ -29,8 +30,8 @@ const linkRows: LinkRows[] = [
heading: 'Products',
isOnMobile: true,
links: [
- { url: '/next/instant', text: '0x Instant' },
- { url: '#', text: '0x Launch Kit' },
+ { url: WebsitePaths.Instant, text: '0x Instant' },
+ { url: WebsitePaths.LaunchKit, text: '0x Launch Kit' },
],
},
{
@@ -45,11 +46,11 @@ const linkRows: LinkRows[] = [
heading: 'About',
isOnMobile: true,
links: [
- { url: '#', text: 'Mission' },
- { url: '#', text: 'Team' },
- { url: '#', text: 'Jobs' },
- { url: '#', text: 'Press Kit' },
- { url: '/next/ecosystem-program', text: 'Grant Program' },
+ { url: WebsitePaths.AboutMission, text: 'Mission' },
+ { url: WebsitePaths.AboutTeam, text: 'Team' },
+ { url: WebsitePaths.AboutJobs, text: 'Jobs' },
+ { url: WebsitePaths.AboutPress, text: 'Press Kit' },
+ { url: WebsitePaths.Ecosystem, text: 'Grant Program' },
],
},
{