import Section from "@/components/Section"; import Image from "@/components/Image"; import Button from "@/components/Button"; type HelpProps = {}; const Help = ({}: HelpProps) => (
Help

Need help?

Can’t find your answer, contact us

    {[ { id: "0", title: "Join our community", text: "Discuss anything with other users", }, { id: "1", title: "Email us", text: "hello@brainwave.com", }, ].map((item) => (
  • Contact
    {item.title}

    {item.text}

  • ))}
); export default Help;