mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 20:35:24 +00:00
20 lines
No EOL
586 B
TypeScript
20 lines
No EOL
586 B
TypeScript
import {
|
|
Hr,
|
|
Link,
|
|
Section,
|
|
Text,
|
|
} from '@react-email/components';
|
|
|
|
export const EmailFooter = () => {
|
|
return (
|
|
<Section className="mt-[10px]">
|
|
<Hr className="border border-solid border-[#eaeaea] mx-0 w-full" />
|
|
<Text className="text-[#666666] text-[12px] leading-[24px]">
|
|
<Link href="https://sourcebot.dev" className="underline text-[#666666]" target="_blank">
|
|
Sourcebot.dev,
|
|
</Link>
|
|
blazingly fast code search.
|
|
</Text>
|
|
</Section>
|
|
)
|
|
} |