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 { Button } from "@/components/ui/button"
    import { Input } from "@/components/ui/input"
    import { Separator } from "@/components/ui/separator"
    import type { IconType, LinkType } from "@/types"
    interface Props {
      logo: IconType
      companyName: string
      description: string
      newsletterHeading: string
      newsletterPlaceholder: string
      newsletterButtonLabel: string
      sections: {
        title: string
        links: { label: string; link: LinkType }[]
      }[]
      socials: { icon: IconType; link: LinkType }[]
      bottomLinks: { label: string; link: LinkType }[]
    }
    export default function Footer4(props: Props) {
      const {
        logo,
        companyName,
        description,
        newsletterHeading,

    No issues found