import { loadStripe, Stripe } from '@stripe/stripe-js'; let stripePromise: Promise; export const getStripe = () => { if (!stripePromise) { stripePromise = loadStripe( process.env.NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY ?? '' ); } return stripePromise; };