import React, { useMemo } from 'react'; import Image from 'next/image'; import logo from '../assets/images/wrenchboard-logo-text.png'; import getConfig from '../../Config/config'; // './../../Config/config' import Link from 'next/link'; function FooterHomeOne({ className }) { var site = useMemo(() => getConfig()[0], []);; let newDate = new Date().getFullYear() return ( <>

{`It is simple. You can set goals, task, or anything that needs to be done and reward accomplishment. WrenchBoard is the platform to connect opportunities. `}

Read More

Company

  • About Us
  • Our Services
  • Use Cases
  • Agent
  • Blog

Support

  • Contact
  • Faqs
  • Resources
  • Privacy Policy
  • Terms of use

Copyright © {newDate} WrenchBoard. All rights reserved.

); } export default FooterHomeOne;