purple-checkout.tsx (466B)
1 import Head from "next/head"; 2 import { useIntl } from 'react-intl' 3 import { Footer } from '@/components/sections/Footer'; 4 import { PurpleCheckout as CheckoutSection } from '@/components/sections/PurpleCheckout'; 5 6 7 export function PurpleCheckout() { 8 const intl = useIntl() 9 10 return (<> 11 <Head> 12 <title>Damus Purple checkout</title> 13 </Head> 14 <main style={{ scrollBehavior: "smooth" }}> 15 <CheckoutSection /> 16 <Footer /> 17 </main> 18 </>) 19 }