purple-login.tsx (515B)
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 import { PurpleLogin } from "../sections/PurpleLogin"; 6 7 8 export function PurpleLoginPage() { 9 const intl = useIntl() 10 11 return (<> 12 <Head> 13 <title>Damus Purple login</title> 14 </Head> 15 <main style={{ scrollBehavior: "smooth" }}> 16 <PurpleLogin /> 17 <Footer /> 18 </main> 19 </>) 20 }