|
1 | 1 | import { Meta, StoryObj } from "@storybook/react";
|
2 | 2 | import {DocsFooter } from "src";
|
3 |
| -import { QuantinuumLogo } from "src/custom/docs/QuantinuumLogo"; |
4 | 3 |
|
5 |
| - const footerConfig = { |
6 |
| - logo: <QuantinuumLogo />, |
7 |
| - columns: [ |
8 |
| - { |
9 |
| - title: 'Solutions', |
10 |
| - items: [ |
11 |
| - { |
12 |
| - href: 'https://docs.quantinuum.com/nexus/index.html', |
13 |
| - name: 'Quantinuum Nexus', |
14 |
| - }, |
15 |
| - { |
16 |
| - href: 'https://docs.quantinuum.com/inquanto/index.html', |
17 |
| - name: 'Inquanto', |
18 |
| - }, |
19 |
| - { |
20 |
| - href: 'https://tket.quantinuum.com/', |
21 |
| - name: 'TKET', |
22 |
| - }, |
23 |
| - { |
24 |
| - href: 'https://docs.quantinuum.com/lambeq', |
25 |
| - name: 'Lambeq', |
26 |
| - }, |
27 |
| - ], |
28 |
| - }, |
29 |
| - { |
30 |
| - title: 'Hardware', |
31 |
| - items: [ |
32 |
| - { |
33 |
| - href: 'https://docs.quantinuum.com/h-series/index.html', |
34 |
| - name: 'System Model H1', |
35 |
| - }, |
36 |
| - { |
37 |
| - href: 'https://docs.quantinuum.com/h-series/index.html', |
38 |
| - name: 'System Model H2', |
39 |
| - }, |
40 |
| - { |
41 |
| - href: 'https://www.quantinuum.com/hardware#access', |
42 |
| - name: 'Get Access', |
43 |
| - }, |
44 |
| - ], |
45 |
| - }, |
46 |
| - { |
47 |
| - title: 'What We Do?', |
48 |
| - items: [ |
49 |
| - { |
50 |
| - href: 'https://www.quantinuum.com/about', |
51 |
| - name: 'About Quantinuum', |
52 |
| - }, |
53 |
| - { |
54 |
| - href: '"https://www.quantinuum.com/publications', |
55 |
| - name: 'Research', |
56 |
| - }, |
57 |
| - { |
58 |
| - href: 'https://www.quantinuum.com/events', |
59 |
| - name: 'Events', |
60 |
| - }, |
61 |
| - ], |
62 |
| - }, |
63 |
| - ], |
64 |
| - subtitle: '', |
65 |
| - } |
66 | 4 |
|
67 | 5 | export function DocsNavDemo() {
|
68 |
| - return <DocsFooter {...footerConfig} />; |
| 6 | + return <DocsFooter />; |
69 | 7 | }
|
70 | 8 |
|
71 | 9 | const meta: Meta<typeof DocsNavDemo> = {
|
|
0 commit comments