mirror of
https://github.com/XFox111/my-website.git
synced 2026-04-22 07:28:01 +03:00
16 lines
597 B
TypeScript
16 lines
597 B
TypeScript
import React from "react";
|
|
|
|
const ThirdPartyAttribution: React.FC = () => <>
|
|
<p>
|
|
Iconography, colorgraphy and typography of this website are based on
|
|
Microsoft's <a target="_blank" href="https://fluentui.dev/">Fluent Design System</a> licensed under
|
|
the <a target="_blank" href="https://github.com/microsoft/fluentui/blob/main/LICENSE">MIT License</a>.
|
|
</p>
|
|
<p>
|
|
Illustrations for GUT.Schedule and FoxTube projects use assets created
|
|
by <a target="_blank" href="https://www.freepik.com/author/rawpixel-com">rawpixel.com</a> on Freepik
|
|
</p>
|
|
</>;
|
|
|
|
export default ThirdPartyAttribution;
|