[#773,website][xs]: add gallery and community sections to the landing page

This commit is contained in:
deme
2023-04-19 20:17:11 -03:00
parent 2dbfbbd552
commit 342eabbb3d
16 changed files with 199 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
export default function EmailIcon(props) {
return (
<svg
fill="currentColor"
viewBox="0 0 2150 2150"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M1920 428.266v1189.54l-464.16-580.146-88.203 70.585 468.679 585.904H83.684l468.679-585.904-88.202-70.585L0 1617.805V428.265l959.944 832.441L1920 428.266ZM1919.932 226v52.627l-959.943 832.44L.045 278.628V226h1919.887Z"
/>
</svg>
);
}