import React from "react"; import Logo from "../../icons/logo"; import { CARROT_DOMAIN, type FooterLink } from "../../constants"; import { Typography } from "@carrot-kpi/ui"; const FooterLinks = ({ title, links }: FooterLink) => ( ); interface FooterProps { footerLinks: FooterLink[]; } export const Footer = ({ footerLinks }: FooterProps) => (
{footerLinks.map(({ title, links }) => ( ))}
Carrot info page
);