Files
newsletter-hackernews/app/page.tsx
2023-12-04 16:18:35 +01:00

12 lines
305 B
TypeScript

import { CustomLink } from '../components/elements/customLink';
export default function Home() {
return (
<div>
<CustomLink path='/subscribe' text='Subscribe' />
<CustomLink path='/unsubscribe' text='Unsubscribe' />
<CustomLink path='/privacy' text='Privacy' />
</div>
);
}