Release v0.2.0 #74

Merged
lamacchinadesiderante merged 24 commits from develop into main 2024-05-13 18:07:51 +00:00
2 changed files with 6 additions and 5 deletions
Showing only changes of commit 4d083a14b0 - Show all commits

View File

@ -2,17 +2,17 @@
import React from 'react';
import { SiGitea } from "react-icons/si";
import { SiCodeberg } from "react-icons/si";
import Icon from '../Icon';
import { REPO_GITEA_URL } from '@/constants/repo';
import { REPO_CODEBERG_URL } from '@/constants/repo';
const Menu: React.FC = () => {
return (
<Icon handleClick={() => {window.location.href = REPO_GITEA_URL;}}>
{<SiGitea size={24} />}
<Icon handleClick={() => {window.location.href = REPO_CODEBERG_URL;}}>
{<SiCodeberg size={24} />}
</Icon>
);
};

View File

@ -1 +1,2 @@
export const REPO_GITEA_URL = 'https://git.lamacchinadesiderante.org/lamacchinadesiderante/proxyraye-nextjs'
export const REPO_GITEA_URL = 'https://git.lamacchinadesiderante.org/lamacchinadesiderante/proxyraye-nextjs'
export const REPO_CODEBERG_URL = 'https://codeberg.org/lamacchinadesiderante/proxyraye'