Skip to content

Commit

Permalink
use footerConfig within TSX function
Browse files Browse the repository at this point in the history
  • Loading branch information
irfankhan10 committed Sep 30, 2024
1 parent 8164624 commit 774acd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/custom/docs/components/footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { QuantinuumLogo } from "../../QuantinuumLogo";
import { Separator } from "src";

const FooterConfig = {
const footerConfig = {
columns: [
{
name: "Products",
Expand Down Expand Up @@ -74,7 +74,7 @@ export const Footer = () => {
</div>
</div>
<div className="grid grid-cols-1 gap-16 md:grid-cols-3 md:gap-24">
{FooterContent.map((col) => {
{footerConfig.map((col) => {
return (
<div key={col.title} className="flex flex-col md:items-end">
<span className="text-foreground text-left text-[0.675rem] font-semibold uppercase tracking-wide md:text-right">
Expand Down

0 comments on commit 774acd5

Please sign in to comment.