import type { NextPage } from "next"; import Head from "next/head"; import dynamic from "next/dynamic"; const HooksEditor = dynamic(() => import("../../components/HooksEditor"), { ssr: false, }); const Footer = dynamic(() => import("../../components/Footer"), { ssr: false, }); const Home: NextPage = () => { return ( <> XRPL Hooks Playground