File size: 166 Bytes
1c1e6e9
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
"use client"

import dynamic from "next/dynamic";

export const SignUpCTA = dynamic(() => import("./sign-up-cta"), {
  // Make sure we turn SSR off
  ssr: false,
});