This commit is contained in:
2025-06-19 21:39:32 +02:00
parent 8d12648e3a
commit a0d9bfd5dc
34 changed files with 1645 additions and 7410 deletions
+14 -14
View File
@@ -1,16 +1,16 @@
import { VscGithubInverted } from 'react-icons/vsc'
import { Button } from '@nextui-org/button'
import { Button } from "@heroui/button";
import { VscGithubInverted } from "react-icons/vsc";
export const Source = () => {
return (
<Button
aria-label='Source Code'
size='sm'
onClick={() =>
window.open('https://github.com/skidoodle/erettsegi-browser')
}
>
<VscGithubInverted size={20} />
</Button>
)
}
return (
<Button
aria-label="Source Code"
size="sm"
onPress={() =>
window.open("https://github.com/skidoodle/erettsegi-browser")
}
>
<VscGithubInverted size={20} />
</Button>
);
};