diff --git a/website/src/components/Hero/index.tsx b/website/src/components/Hero/index.tsx
index 4d74c46..2e9dbcc 100644
--- a/website/src/components/Hero/index.tsx
+++ b/website/src/components/Hero/index.tsx
@@ -3,21 +3,6 @@ import { toast } from 'sonner';
import styles from './hero.module.css';
import Link from 'next/link';
-export const headlessToast = (message: string) => {
- toast.custom(
- (t) => (
-
- {message}
-
-
- ),
- {
- // dismissible: true
- // onDismiss: (t) => toast.dismiss(t.id)
- },
- );
-};
-
export const Hero = () => {
return (
@@ -32,7 +17,6 @@ export const Hero = () => {
-
GitHub