14 lines
399 B
TypeScript
14 lines
399 B
TypeScript
import styles from './yes.module.css';
|
|
|
|
export default function YesPage() {
|
|
return (
|
|
<div className={styles.container}>
|
|
<h1>Congratulations!!!</h1>
|
|
<h2>You're now my valentine 💖🥳</h2>
|
|
<h2>No takebacks allowed, you're stuck with me 🎉</h2>
|
|
<p></p>
|
|
<h3>P.S. Great job using the freewill the website gave you to make this right choice</h3>
|
|
</div>
|
|
);
|
|
}
|