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