Block Editor
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    import Link from "next/link"
    import type { IconType } from "@/types"
    interface Props {
      logo: IconType
    }
    export default function Footer1(props: Props) {
      const { logo } = props
      const items = [
        {
          title: "Home",
          href: "/",
          description: "",
        },
        {
          title: "Product",
          description: "Managing a small business today is already tough.",
          items: [
            {
              title: "Reports",
              href: "/reports",
            },
            {
              title: "Statistics",
              href: "/statistics",
            },
            {

    No issues found