This commit is contained in:
2026-02-23 05:03:38 +01:00
parent 3b9fa373bc
commit d1ae498a2f
4 changed files with 69 additions and 4 deletions
@@ -0,0 +1,3 @@
export default async function BookCall() {
return null;
}
+9 -4
View File
@@ -12,14 +12,19 @@ export default function Main() {
<Stack className="w-full max-w-full xl:max-w-[50vw]">
<H1 className="leading-snug">Contact Me</H1>
<Span>
Have a great idea? Want to collaborate? Let's make it
happen.
Need help with CI/CD, cost optimization, or production
reliability? Book a call or send a message.
</Span>
<Link href="mailto:ben@tben.me" className="border-none">
<Link
href={`mailto:${process.env.NEXT_PUBLIC_EMAIL_ADDRESS}`}
className="border-none"
>
<Row className="items-center">
<Mail size={20} className="mt-1" />
<Span className="text-2xl">ben@tben.me</Span>
<Span className="text-2xl">
{process.env.NEXT_PUBLIC_EMAIL_ADDRESS}
</Span>
</Row>
</Link>
</Stack>