import React from "react"; import Link from "next/link"; import { FaFacebookF, FaGithub, FaTwitter } from "react-icons/fa"; import { AiFillInstagram } from "react-icons/ai"; import { Container } from "../../util/container"; import { RawRenderer } from "./rawRenderer"; import { ObjectField } from "@tinacms/schema-tools/dist/types"; import TagManager from "react-gtm-module"; export const Footer = ({ data, rawData }) => { return ( ); }; export const footerSchema: ObjectField = { type: "object", label: "Footer", name: "footer", fields: [ { type: "object", label: "Social Links", name: "social", fields: [ { type: "string", label: "Facebook", name: "facebook" }, { type: "string", label: "Twitter", name: "twitter" }, { type: "string", label: "Instagram", name: "instagram" }, { type: "string", label: "Github", name: "github" } ] }] };