Skip to content

Commit

Permalink
move Footer Schema and Content into index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
irfankhan10 committed Sep 30, 2024
1 parent fa8a483 commit 71b7c82
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions src/custom/docs/components/footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,55 @@ import text from "./text.json"

const FooterContent = FooterSchema.parse(text);

const FooterConfig = {
columns: [
{
name: "Products",
items: [
{
name: "H-Series",
href: "https://docs.quantinuum.com/h-series"
},
{
name: "Nexus",
href: "https://docs.quantinuum.com/nexus"
},
{
name: "InQuanto",
href: "https://docs.quantinuum.com/inquanto"
}
]
}, {
name: "Opensource",
items: [
{
name: "TKET",
href: "https://docs.quantinuum.com/tket"
},
{
name: "\u03BBambeq",
href: "https://docs.quantinuum.com/lambeq"
}
]
},{
name: "Quantinuum",
items: [
{
name: "About",
href: "https://www.quantinuum.com/about",
}, {
name: "Careers",
href: "https://www.quantinuum.com/publications",
},{
name: "Events",
href: "https://www.quantinuum.com/events"
}
]
}
],
subtitle: "",
}

export const Footer = () => {
return (
<div className="mb-24">
Expand Down

0 comments on commit 71b7c82

Please sign in to comment.