Compare commits

...

2 Commits

7 changed files with 21 additions and 1 deletions

View File

@ -66,7 +66,27 @@ const Socials = () => (
</>
);
const Footer = () => <footer class="index-footer"></footer>;
const Footer = () => {
const Link = ({ name, url }: { name: string; url: string }) => (
<a href={url} target="_blank" rel="noopener">{name}</a>
);
return (
<footer class="index-footer">
Mascot drawn by&nbsp;
<Link name="CutePencilCase" url="https://linktr.ee/cutepencilcase" />
<br />
Font&nbsp;
<Link name="Iosevka" url="https://github.com/be5invis/Iosevka" />
&nbsp;&bull; Color theme&nbsp;
<Link name="Gruvbox" url="https://github.com/morhetz/gruvbox-contrib" />
&nbsp;&bull; Social icons&nbsp;
<Link name="Icons8" url="https://icons8.com/" />
<br />
<Link name="Source Code" url="https://gitea.adaedra.eu/adaedra/blog" />
</footer>
);
};
export default (props: Props) => (
<>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.