diff --git a/packages/ui-toolkit/src/styleguide/bottomNav.js b/packages/ui-toolkit/src/styleguide/bottomNav.js
new file mode 100644
index 00000000..9b359ac9
--- /dev/null
+++ b/packages/ui-toolkit/src/styleguide/bottomNav.js
@@ -0,0 +1,50 @@
+import React from 'react';
+import remcalc from 'remcalc';
+import styled from 'styled-components';
+import { Arrow } from 'joyent-icons';
+
+const BottomNav = styled.div`
+ display: flex;
+ justify-content: space-between;
+ margin: 36px 0;
+`;
+
+const Link = styled.a`
+ display: flex;
+ align-items: center;
+ color: #3b46cc;
+ font-size: 15px;
+ line-height: 24px;
+ text-decoration: none;
+`;
+
+export default props => {
+ const items = props.items.map(item => item.name);
+ const selectedIndex =
+ items.indexOf(props.link) > -1 ? items.indexOf(props.link) : 0;
+
+ if (!items.length) {
+ return null;
+ }
+
+ return (
+