import { useState } from "react"; import { Header } from "components/editor-badge/comps/header"; // import { Editor } from "components/editor-badge"; import { TourProvider } from "@reactour/tour"; import { Footer } from "@/components/footer"; import Head from "next/head"; import { useIntl } from "react-intl"; import dynamic from "next/dynamic"; const DynamicEditor = dynamic(() => import("@/components/editor-badge"), { loading: () =>
Loading...
, }); export default function BadgeEditor() { const intl = useIntl(); return ( <>