in website/src/pages/index.js [188:242]
function LogoAnimation() {
return (
<svg
className="LogoAnimation init"
width={350}
height={350}
xmlns="http://www.w3.org/2000/svg"
viewBox="-200 -200 400 400">
<title>React Logo</title>
<clipPath id="screen">
<ScreenRect fill="none" stroke="gray" />
</clipPath>
<rect
x="-25"
y="120"
width="50"
height="25"
rx="2"
fill="white"
stroke="none"
className="stand"
/>
<polygon
points="-125,90 125,90 160,145 -160,145"
fill="white"
stroke="white"
strokeWidth="5"
strokeLinejoin="round"
className="base"
/>
<ScreenRect className="background" stroke="none" />
<g clipPath="url(#screen)" className="logo">
<g className="logoInner">
<circle cx="0" cy="0" r="30" fill="#61dafb" />
<g stroke="#61dafb" strokeWidth="15" fill="none" id="logo">
<ellipse rx="165" ry="64" />
<ellipse rx="165" ry="64" transform="rotate(60)" />
<ellipse rx="165" ry="64" transform="rotate(120)" />
</g>
</g>
<line
x1="-30"
x2="30"
y1="130"
y2="130"
stroke="white"
strokeWidth="8"
strokeLinecap="round"
className="speaker"
/>
</g>
<ScreenRect fill="none" stroke="white" />
</svg>
);
}