import {Link, Section, Text} from '@react-email/components'; import * as React from 'react'; interface FooterProps { projectId?: string; landingUrl?: string; } export function Footer({projectId, landingUrl = 'https://www.useplunk.com'}: FooterProps) { return (
This email was sent by Plunk. . {projectId && ( Project ID: {projectId} )} Plunk {' • '} Privacy {' • '} Terms
); }