eny.space Landingpage
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(logo): replace logo and add typing animation

+113 -115
+106 -111
app/components/site-header/site-header.tsx
··· 1 1 "use client"; 2 2 3 - import { useState } from "react"; 3 + import { useState, useEffect } from "react"; 4 4 import Link from "next/link"; 5 5 import Image from "next/image"; 6 6 import { signOut } from "@/actions/auth"; ··· 8 8 import { ArrowUpRightIcon, MenuIcon, XIcon } from "lucide-react"; 9 9 import type { User } from "@supabase/supabase-js"; 10 10 11 - const navLinkClass = 12 - "inline-flex h-9 items-center justify-center rounded-full bg-transparent px-4 py-2 text-xs font-medium uppercase tracking-wide text-white/90 transition-colors hover:bg-white/5 hover:text-white focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-white/30"; 13 - 14 11 interface SiteHeaderProps { 15 12 user: User | null; 16 13 } 17 14 18 15 export function SiteHeader({ user }: SiteHeaderProps) { 19 16 const [mobileOpen, setMobileOpen] = useState(false); 17 + const [displayText, setDisplayText] = useState("."); 18 + const [isTyping, setIsTyping] = useState(false); 20 19 21 - const closeMobile = () => setMobileOpen(false); 20 + useEffect(() => { 21 + let dotCycle = 1; 22 + let repeatCount = 0; 23 + const fullWord = "space"; 24 + let charIndex = 0; 25 + 26 + const DOT_SPEED = 400; 27 + const CURSOR_BLINK_SPEED = 500; 28 + const TYPE_SPEED = 200; 29 + 30 + const dotInterval = setInterval(() => { 31 + if (dotCycle < 3) { 32 + dotCycle++; 33 + } else { 34 + dotCycle = 1; 35 + repeatCount++; 36 + } 37 + 38 + if (repeatCount < 2) { 39 + setDisplayText(".".repeat(dotCycle)); 40 + } else { 41 + clearInterval(dotInterval); 42 + setDisplayText("."); 43 + 44 + let blinks = 0; 45 + const blinkInterval = setInterval(() => { 46 + setIsTyping((prev) => !prev); 47 + blinks++; 48 + 49 + if (blinks === 4) { 50 + clearInterval(blinkInterval); 51 + setIsTyping(true); 52 + 53 + const typeInterval = setInterval(() => { 54 + setDisplayText("." + fullWord.slice(0, charIndex + 1)); 55 + charIndex++; 56 + 57 + if (charIndex === fullWord.length) { 58 + clearInterval(typeInterval); 59 + setTimeout(() => setIsTyping(false), 400); 60 + } 61 + }, TYPE_SPEED); 62 + } 63 + }, CURSOR_BLINK_SPEED); 64 + } 65 + }, DOT_SPEED); 66 + 67 + return () => clearInterval(dotInterval); 68 + }, []); 22 69 23 70 return ( 24 71 <header className="sticky top-0 z-50 w-full border-b border-white/10 bg-neutral-950"> 25 72 <div className="mx-auto flex h-14 max-w-7xl items-center justify-between gap-4 px-4 sm:px-6"> 26 73 <Link 27 74 href="/" 28 - className="flex items-center gap-2 font-semibold text-white focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-white/30 focus-visible:ring-offset-2 focus-visible:ring-offset-neutral-950" 29 - onClick={closeMobile} 75 + className="flex items-center gap-2 font-semibold text-white focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-white/30" 76 + onClick={() => setMobileOpen(false)} 30 77 > 31 78 <Image 32 79 src="/logo.svg" ··· 35 82 height={40} 36 83 className="shrink-0" 37 84 /> 38 - <span className="text-lg">eny.space</span> 85 + 86 + {/* THE LAYOUT FIX IS HERE */} 87 + <div className="relative text-lg flex items-center tabular-nums"> 88 + {/* Hidden ghost text that reserves the full width of "eny.space" */} 89 + <span 90 + className="invisible pointer-events-none select-none" 91 + aria-hidden="true" 92 + > 93 + eny.space 94 + </span> 95 + 96 + {/* The actual visible animated text */} 97 + <div className="absolute left-0 flex items-center whitespace-nowrap"> 98 + <span>eny{displayText}</span> 99 + <span 100 + className={`ml-0.5 transition-opacity duration-100 ${isTyping ? "opacity-100" : "opacity-0"}`} 101 + > 102 + _ 103 + </span> 104 + </div> 105 + </div> 39 106 </Link> 40 107 108 + {/* ... (rest of your nav and buttons) ... */} 41 109 <nav className="hidden flex-1 justify-center gap-1 md:flex"> 42 - <Link href="/" className={navLinkClass}> 110 + <Link 111 + href="/" 112 + className="inline-flex h-9 items-center justify-center rounded-full bg-transparent px-4 py-2 text-xs font-medium uppercase tracking-wide text-white/90 transition-colors hover:bg-white/5" 113 + > 43 114 Home 44 115 </Link> 45 116 {user && ( 46 - <Link href="/dashboard" className={navLinkClass}> 117 + <Link 118 + href="/dashboard" 119 + className="inline-flex h-9 items-center justify-center rounded-full bg-transparent px-4 py-2 text-xs font-medium uppercase tracking-wide text-white/90 transition-colors hover:bg-white/5" 120 + > 47 121 Dashboard 48 122 </Link> 49 123 )} 50 - <Link href="/#about" className={navLinkClass}> 124 + <Link 125 + href="/#about" 126 + className="inline-flex h-9 items-center justify-center rounded-full bg-transparent px-4 py-2 text-xs font-medium uppercase tracking-wide text-white/90 transition-colors hover:bg-white/5" 127 + > 51 128 About 52 129 </Link> 53 130 </nav> 54 131 55 132 <div className="hidden items-center gap-2 md:flex"> 56 - {user ? ( 133 + {!user ? ( 134 + <Button 135 + size="default" 136 + className="rounded-full bg-white px-4 text-xs font-medium uppercase tracking-wide text-neutral-950 hover:bg-white/90" 137 + asChild 138 + > 139 + <Link href="/signup"> 140 + Get started 141 + <ArrowUpRightIcon className="ml-1 size-3.5" /> 142 + </Link> 143 + </Button> 144 + ) : ( 57 145 <form action={signOut}> 58 146 <Button 59 147 type="submit" 60 148 size="default" 61 - className="inline-flex items-center rounded-full bg-white px-4 text-xs font-medium uppercase tracking-wide text-neutral-950 hover:bg-white/90" 149 + className="rounded-full bg-white px-4 text-xs font-medium uppercase tracking-wide text-neutral-950" 62 150 > 63 - <span>Sign out</span> 64 - <ArrowUpRightIcon className="ml-1 size-3.5" aria-hidden /> 151 + Sign out 65 152 </Button> 66 153 </form> 67 - ) : ( 68 - <> 69 - <Button 70 - variant="outline" 71 - size="default" 72 - className="rounded-full border-white/20 bg-transparent px-4 text-xs font-medium uppercase tracking-wide text-white/90 hover:bg-white/10 hover:text-white" 73 - asChild 74 - > 75 - <Link href="/login">Login</Link> 76 - </Button> 77 - <Button 78 - size="default" 79 - className="rounded-full bg-white px-4 text-xs font-medium uppercase tracking-wide text-neutral-950 hover:bg-white/90" 80 - asChild 81 - > 82 - <Link href="/signup"> 83 - Get started 84 - <ArrowUpRightIcon className="ml-1 size-3.5" aria-hidden /> 85 - </Link> 86 - </Button> 87 - </> 88 154 )} 89 155 </div> 90 156 91 157 <button 92 - type="button" 93 - aria-label="Toggle navigation" 94 - className="inline-flex h-9 w-9 cursor-pointer items-center justify-center rounded-full border border-white/20 text-white md:hidden" 95 - onClick={() => setMobileOpen((open) => !open)} 158 + className="md:hidden text-white" 159 + onClick={() => setMobileOpen(!mobileOpen)} 96 160 > 97 161 {mobileOpen ? ( 98 - <XIcon className="size-4" aria-hidden /> 162 + <XIcon className="size-5" /> 99 163 ) : ( 100 - <MenuIcon className="size-4" aria-hidden /> 164 + <MenuIcon className="size-5" /> 101 165 )} 102 166 </button> 103 167 </div> 104 - 105 - {mobileOpen && ( 106 - <div className="border-t border-white/10 bg-neutral-950 px-4 pb-4 pt-3 md:hidden"> 107 - <nav className="flex flex-col gap-2"> 108 - <Link 109 - href="/" 110 - className="text-sm font-medium text-white/90" 111 - onClick={closeMobile} 112 - > 113 - Home 114 - </Link> 115 - {user && ( 116 - <Link 117 - href="/dashboard" 118 - className="text-sm font-medium text-white/90" 119 - onClick={closeMobile} 120 - > 121 - Dashboard 122 - </Link> 123 - )} 124 - <Link 125 - href="/#about" 126 - className="text-sm font-medium text-white/90" 127 - onClick={closeMobile} 128 - > 129 - About 130 - </Link> 131 - </nav> 132 - 133 - <div className="mt-3 flex flex-col gap-2"> 134 - {user ? ( 135 - <form action={signOut}> 136 - <Button 137 - type="submit" 138 - size="default" 139 - className="inline-flex h-9 items-center justify-center rounded-full bg-white px-4 text-xs font-medium uppercase tracking-wide text-neutral-950 hover:bg-white/90" 140 - > 141 - <span>Sign out</span> 142 - <ArrowUpRightIcon className="ml-1 size-3.5" aria-hidden /> 143 - </Button> 144 - </form> 145 - ) : ( 146 - <> 147 - <Button 148 - variant="outline" 149 - size="default" 150 - className="inline-flex h-9 w-full items-center justify-center rounded-full border-white/20 bg-transparent px-4 text-xs font-medium uppercase tracking-wide text-white/90 hover:bg-white/10 hover:text-white" 151 - asChild 152 - > 153 - <Link href="/login" onClick={closeMobile}> 154 - Login 155 - </Link> 156 - </Button> 157 - <Button 158 - size="default" 159 - className="inline-flex h-9 w-full items-center justify-center rounded-full bg-white px-4 text-xs font-medium uppercase tracking-wide text-neutral-950 hover:bg-white/90" 160 - asChild 161 - > 162 - <Link href="/signup" onClick={closeMobile}> 163 - Get started 164 - <ArrowUpRightIcon className="ml-1 size-3.5" aria-hidden /> 165 - </Link> 166 - </Button> 167 - </> 168 - )} 169 - </div> 170 - </div> 171 - )} 172 168 </header> 173 169 ); 174 170 } 175 -
+2 -4
public/logo.svg
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1280" height="1280"> 3 - <path d="M0 0 C0.81952148 0.37697021 1.63904297 0.75394043 2.48339844 1.14233398 C11.60285155 5.34423447 20.53345418 9.57571453 29 15 C30.18360833 15.72476307 31.36863018 16.44722038 32.5546875 17.16796875 C46.72974953 25.82640202 60.36518708 35.19579918 73 46 C74.16665776 46.99219797 75.33332501 47.98438479 76.5 48.9765625 C79.49524674 51.52960075 82.4772543 54.09757669 85.45507812 56.67089844 C86.77004037 57.80216495 88.09493747 58.92186671 89.421875 60.0390625 C93.40501694 63.42010158 96.85096472 66.9899968 100.2265625 70.9765625 C102.02461917 73.02808972 103.9157426 74.91519541 105.875 76.8125 C117.27976871 88.08567523 126.98680285 101.77032865 136 115 C136.72445312 116.02609375 137.44890625 117.0521875 138.1953125 118.109375 C149.2185272 133.93422347 158.34831911 151.30931379 166 169 C166.47308594 170.08667969 166.94617188 171.17335938 167.43359375 172.29296875 C173.60118867 187.08516795 178.77580507 202.5412441 183 218 C191.44559799 218.17788528 199.80780198 217.69099294 208.22385406 217.07402039 C210.57253644 216.90208377 212.92154201 216.73537984 215.27069092 216.56994629 C221.9422003 216.09910602 228.612987 215.61832316 235.28369141 215.13623047 C239.38744579 214.84000895 243.49154851 214.54903854 247.5958786 214.26091003 C249.88180192 214.09880775 252.16722718 213.93067445 254.45269775 213.7623291 C261.35894704 213.26645294 268.26668378 212.8695614 275.19042969 212.74414062 C276.94356476 212.70673767 276.94356476 212.70673767 278.7321167 212.6685791 C283.6286285 213.1651716 286.87960948 214.81736556 290.25 218.375 C292.86510786 222.2976618 294.04899829 224.65254715 293.875 229.4375 C292.5211383 234.9496512 290.58481365 237.89055902 285.91914368 241.15673828 C279.09492723 244.37226141 271.22051996 243.4377612 263.85620117 243.3046875 C261.98679061 243.28616696 260.11736129 243.26947191 258.24792004 243.25436401 C253.95263776 243.21536571 249.65777666 243.1624677 245.36275864 243.10095215 C238.03405749 242.99698969 230.70519033 242.92239103 223.37612181 242.85097337 C205.08949117 242.67173396 186.80341632 242.45106706 168.51730435 242.22583044 C159.25423381 242.11181257 149.99112738 242.00084257 140.72801854 241.88998723 C124.2191264 241.69234224 107.71026259 241.49242862 91.20141602 241.29101562 C75.19850098 241.09578017 59.19557304 240.90165839 43.19262695 240.70898438 C42.20029355 240.69703639 41.20796015 240.68508841 40.18555603 240.67277837 C35.20554558 240.6128243 30.22553488 240.5528916 25.24552405 240.49296951 C-15.83635763 239.99862339 -56.91819366 239.50056505 -98 239 C-98 238.34 -98 237.68 -98 237 C-94.0772445 236.11799576 -90.25605616 235.73677137 -86.24584961 235.47509766 C-85.58342034 235.43094601 -84.92099108 235.38679436 -84.2384882 235.34130478 C-82.04330016 235.19576448 -79.84783634 235.05492764 -77.65234375 234.9140625 C-76.09722926 234.81179793 -74.54213522 234.70922196 -72.98706055 234.60635376 C-68.83005453 234.33214466 -64.67280103 234.06187973 -60.51548386 233.79243469 C-56.21599178 233.51319162 -51.91671364 233.23069836 -47.61743164 232.94824219 C-46.76663497 232.89235176 -45.9158383 232.83646133 -45.03925991 232.77887726 C-43.32703585 232.66639738 -41.61481248 232.55390708 -39.9025898 232.44140625 C-37.34604683 232.27358827 -34.78947358 232.10623782 -32.2328949 231.93896484 C-22.87255654 231.32580498 -13.51349711 230.69804944 -4.15625 230.0390625 C-3.17010208 229.96968979 -2.18395416 229.90031708 -1.16792297 229.82884216 C0.69423473 229.69778159 2.55639194 229.56671403 4.41854858 229.43563843 C20.27341435 228.32242873 36.1087474 227.41589311 52 227 C28.48303999 174.33120936 -8.88782019 132.94486147 -63.59375 111.59765625 C-67.04662044 110.3410253 -70.50394586 109.12915527 -74 108 C-74.94004883 107.69078613 -75.88009766 107.38157227 -76.84863281 107.06298828 C-118.45317339 93.75330041 -164.24458983 95.77523221 -205 111 C-205.8161377 111.30276855 -206.63227539 111.60553711 -207.47314453 111.91748047 C-230.53456122 120.64579466 -252.10337515 134.03226571 -270 151 C-271.68585984 152.48103575 -273.37338885 153.96017343 -275.0625 155.4375 C-300.22364275 178.21166031 -318.80195062 210.61137709 -328.39599609 242.97558594 C-328.95177564 244.83836846 -329.54636871 246.68945411 -330.14453125 248.5390625 C-333.58184819 259.94529026 -334.52692461 271.69369358 -335.67456055 283.51074219 C-336 286 -336 286 -337 289 C-336.24820213 288.98955375 -335.49640427 288.97910749 -334.72182465 288.96834469 C-293.24246821 288.39439767 -251.76291629 287.90813975 -210.28125 287.53515625 C-209.23160655 287.52569292 -208.1819631 287.5162296 -207.10051227 287.5064795 C-197.31794611 287.41828419 -187.53537512 287.3306339 -177.75279903 287.24354649 C-106.47918426 286.60890316 -35.20721591 285.9227042 36.0625 284.9375 C37.62000779 284.91601508 39.17751562 284.89453324 40.7350235 284.8730545 C55.2741428 284.67240874 69.8132208 284.468893 84.3522644 284.26283836 C136.85791209 283.51880763 189.36409672 282.94243828 241.87305307 282.48904628 C246.38426787 282.45004984 250.8954738 282.41012889 255.40667725 282.36984253 C268.67279676 282.25224972 281.93888756 282.1470754 295.20529938 282.068326 C301.35536669 282.03155845 307.50527833 281.98835802 313.6552124 281.93341064 C319.95170712 281.87751368 326.2481379 281.8366901 332.54480553 281.80629158 C334.91375068 281.79235237 337.28267174 281.77321585 339.65152931 281.74853325 C342.91841738 281.71539305 346.18487402 281.70125976 349.4519043 281.69165039 C350.40687742 281.67755945 351.36185055 281.66346851 352.34576225 281.64895058 C360.63382175 281.65973849 367.26181189 283.53746305 373.4609375 289.26953125 C377.91126877 294.27333011 380.10440405 300.31814082 380 307 C379.2633535 313.73505373 376.30879778 319.88072763 371.36328125 324.54296875 C364.94911712 329.45809228 358.17568314 330.31464934 350.3125 330.1875 C349.60544922 330.18685547 348.89839844 330.18621094 348.16992188 330.18554688 C342.52031747 330.14249316 336.8900743 329.84474055 331.25 329.54296875 C319.50622724 328.92311547 307.75605631 328.61867614 296.00097179 328.29819489 C271.19987653 327.62177489 246.41454064 326.76666647 221.62908173 325.65774918 C188.37191297 324.16991624 155.10709618 323.11636312 121.83016777 322.17552948 C116.83594671 322.03412419 111.84178383 321.89076116 106.84765625 321.74609375 C105.86691006 321.71772808 104.88616386 321.68936241 103.87569809 321.66013718 C87.60406101 321.18452577 71.34266729 320.53954986 55.07943153 319.83660507 C38.37624292 319.1161931 21.67655252 318.57284445 4.96310425 318.16629028 C-22.95005425 317.4841153 -50.84562012 316.51288028 -78.74337769 315.37091064 C-83.50076148 315.17617174 -88.25817341 314.98213834 -93.015625 314.7890625 C-94.21104007 314.74052061 -94.21104007 314.74052061 -95.43060493 314.69099808 C-116.38782218 313.84312763 -137.35012931 313.14386423 -158.3125 312.4375 C-181.3783415 311.65978759 -204.44001782 310.86464293 -227.49557495 309.81860352 C-248.019523 308.89296795 -268.55379362 308.29634458 -289.08935547 307.69702148 C-305.06426974 307.2287885 -321.03269911 306.68195513 -337 306 C-332.83721069 350.28271298 -321.03864146 390.35389674 -292 425 C-291.54044922 425.54978516 -291.08089844 426.09957031 -290.60742188 426.66601562 C-270.49209967 450.66278202 -245.21131168 471.03688217 -216 483 C-214.86433594 483.47953125 -213.72867187 483.9590625 -212.55859375 484.453125 C-166.45230384 503.6473276 -113.04922114 506.33421506 -66.0625 488.125 C-63.69932313 487.10393917 -61.34516891 486.06176878 -59 485 C-57.64873805 484.42117287 -56.29716258 483.84307723 -54.9453125 483.265625 C-36.87201051 475.35334032 -15.51439117 463.69376054 -7.625 444.6875 C-6.23861212 436.50781149 -7.30923154 428.90899331 -12 422 C-15.78006204 416.99967521 -19.59482757 413.24310346 -25 410 C-25.84498047 409.37931641 -25.84498047 409.37931641 -26.70703125 408.74609375 C-39.74845449 399.30585247 -55.43098238 393.79178019 -70.59179688 388.79980469 C-72.8874013 388.03739592 -75.17098743 387.24700731 -77.453125 386.4453125 C-94.46665541 380.5215192 -111.97492709 376.24400154 -129.58813477 372.51586914 C-131.42643526 372.12267864 -133.26247165 371.71888686 -135.09741211 371.31030273 C-143.83687428 369.38482551 -152.59916928 367.83348946 -161.4375 366.4375 C-163.37206055 366.12522461 -163.37206055 366.12522461 -165.34570312 365.80664062 C-174.21378779 364.39005625 -183.09361855 363.14600372 -192 362 C-192 361.01 -192 360.02 -192 359 C-174.93963303 359.24208307 -157.87928634 359.48554849 -140.81896019 359.73049068 C-132.89054582 359.84429281 -124.96212626 359.95770164 -117.03369141 360.07006836 C-107.84275483 360.20037598 -98.65183887 360.33207676 -89.4609375 360.46484375 C-88.70015616 360.47580755 -87.93937483 360.48677135 -87.15553951 360.49806738 C-67.8765974 360.77615397 -48.59910296 361.09006679 -29.32185745 361.47047615 C-3.01784746 361.98873757 23.28473973 362.25424325 49.59298706 362.44555664 C62.43835546 362.5390792 75.28362534 362.64526654 88.12890625 362.75 C89.4088553 362.76035782 90.68880436 362.77071564 92.00753975 362.78138733 C124.73477588 363.04668073 157.46095613 363.38671159 190.18638611 363.82156372 C198.45325137 363.93116943 206.72007292 364.0313398 214.98725033 364.11433029 C220.94016887 364.17467005 226.89280754 364.24914014 232.8454895 364.32983398 C235.19819474 364.35941695 237.55096674 364.38417571 239.90377808 364.40356445 C243.03906095 364.43013636 246.17359396 364.47440242 249.30859375 364.5234375 C250.20195435 364.52665009 251.09531494 364.52986267 252.01574707 364.53317261 C257.39856495 364.64128791 261.2242674 365.45955875 266 368 C267.70091875 370.21858967 267.95238868 371.69052639 268.375 374.4375 C267.86233872 377.94068541 266.47871818 379.52128182 264 382 C261.14387256 382.97054331 258.50107568 383.12186828 255.5 383.140625 C237.48314124 383.46327056 220.98389724 386.36246221 205 395 C203.73542969 395.65742187 203.73542969 395.65742187 202.4453125 396.328125 C179.13021457 409.28923376 166.78509512 430.60877584 154.37109375 453.22924805 C148.12930001 464.59791958 141.71783758 475.56523937 134 486 C133.51966309 486.66 133.03932617 487.32 132.54443359 488 C126.16026194 496.76967189 119.50449706 505.24579868 112.37329102 513.421875 C111.40855875 514.53050244 110.45135077 515.64570077 109.49975586 516.765625 C104.77542249 522.27443144 99.74056099 527.44563145 94.60961914 532.57568359 C93.16718144 534.02034996 91.73298435 535.47289854 90.29882812 536.92578125 C88.93467773 538.29283203 88.93467773 538.29283203 87.54296875 539.6875 C86.71821045 540.51636719 85.89345215 541.34523438 85.04370117 542.19921875 C83 544 83 544 81 544 C81 544.66 81 545.32 81 546 C68.9840536 557.56601008 53.95203579 566.95219487 40 576 C39.09121094 576.60328125 38.18242188 577.2065625 37.24609375 577.828125 C31.76658773 581.41357702 26.21191334 584.50545563 20.31640625 587.3515625 C17.94737407 588.52910264 15.64571165 589.73445795 13.33984375 591.0234375 C1.87345416 597.39507428 -10.03038028 602.27948577 -22.27587891 606.95751953 C-24.44496308 607.78759566 -26.60489965 608.63496421 -28.76171875 609.49609375 C-50.30974428 617.74220139 -73.86861575 622.64622575 -96.75 625.1875 C-97.52223907 625.27371613 -98.29447815 625.35993225 -99.09011841 625.44876099 C-125.94408589 628.37463847 -152.22105241 627.52049032 -179 624 C-179.94004883 623.88253418 -180.88009766 623.76506836 -181.84863281 623.64404297 C-231.68341913 617.35750272 -278.44029652 597.7658453 -320 570 C-320.92425781 569.38382813 -321.84851563 568.76765625 -322.80078125 568.1328125 C-333.85919468 560.5674822 -344.14703878 552.06335109 -354 543 C-355.41207844 541.74481917 -356.8284912 540.49449073 -358.25 539.25 C-358.89324219 538.68667969 -359.53648437 538.12335937 -360.19921875 537.54296875 C-361.78999235 536.17994148 -363.42343723 534.86706017 -365.0625 533.5625 C-368.10505563 530.90835573 -370.62166258 528.08480873 -373.23046875 525.015625 C-374.83077503 523.19275957 -376.48869775 521.53961978 -378.25 519.875 C-383.20730242 514.99515543 -387.30767706 509.37557702 -391.54296875 503.87597656 C-392.98029226 502.02537438 -394.43861788 500.19381589 -395.90625 498.3671875 C-401.41672544 491.49483608 -406.44046932 484.55337566 -411 477 C-412.37430079 474.77040219 -413.74932368 472.54124935 -415.125 470.3125 C-415.79789063 469.21164062 -416.47078125 468.11078125 -417.1640625 466.9765625 C-418.57625843 464.68700229 -420.0243424 462.4356495 -421.5 460.1875 C-436.90389769 435.53092552 -447.26413521 406.07933033 -454 378 C-454.22139648 377.08911621 -454.44279297 376.17823242 -454.67089844 375.23974609 C-460.44738189 351.00141796 -463.8098876 325.9249354 -463 301 C-464.21362213 301.0104686 -465.42724426 301.02093719 -466.67764282 301.03172302 C-477.87407841 301.09810038 -489.00490254 300.81780458 -500.18492508 300.23461723 C-518.06717644 299.31075482 -535.95266072 298.67532138 -553.8515625 298.18359375 C-554.9869622 298.15226978 -556.12236191 298.12094582 -557.29216766 298.08867264 C-564.2312066 297.89827166 -571.17038034 297.7132298 -578.10961914 297.53027344 C-587.49793899 297.2825089 -596.88612916 297.0301319 -606.27421188 296.77354622 C-609.49204809 296.68655439 -612.70995627 296.60280548 -615.92788696 296.51939392 C-627.63337202 296.20732084 -639.31294993 295.7305766 -651 295 C-651 294.34 -651 293.68 -651 293 C-647.26788977 291.75596326 -643.78316281 291.83133129 -639.89428711 291.81054688 C-638.64620569 291.79807718 -638.64620569 291.79807718 -637.3729105 291.78535557 C-634.59107611 291.75864525 -631.8092337 291.73876882 -629.02734375 291.71875 C-627.05822324 291.70094416 -625.08910701 291.68265953 -623.11999512 291.66392517 C-618.91618657 291.62471772 -614.71236708 291.58831685 -610.5085144 291.5541687 C-600.62843159 291.47370501 -590.74847797 291.37938452 -580.86851692 291.28530693 C-578.65935492 291.26432422 -576.45019123 291.24351841 -574.24102592 291.22288704 C-551.699903 291.01204131 -529.16157638 290.68837798 -506.62280273 290.3046875 C-492.08021035 290.06158667 -477.54466498 289.93917051 -463 290 C-463.02392822 289.19892822 -463.04785645 288.39785645 -463.07250977 287.57250977 C-463.23685879 277.53725862 -462.27784296 267.86796153 -460.9375 257.9375 C-460.82740601 257.11051605 -460.71731201 256.2835321 -460.60388184 255.43148804 C-451.80786134 190.21780463 -423.21981592 128.7489231 -379 80 C-378.46036621 79.40396973 -377.92073242 78.80793945 -377.36474609 78.19384766 C-373.94530852 74.4290949 -370.50856591 70.68197919 -367 67 C-366.46874512 66.43812988 -365.93749023 65.87625977 -365.39013672 65.29736328 C-363.96690655 63.82501163 -362.48719596 62.40771151 -361 61 C-360.34 61 -359.68 61 -359 61 C-359 60.34 -359 59.68 -359 59 C-357.3203125 57.2734375 -357.3203125 57.2734375 -355.125 55.375 C-354.40570313 54.74335938 -353.68640625 54.11171875 -352.9453125 53.4609375 C-351 52 -351 52 -349 52 C-349 51.34 -349 50.68 -349 50 C-346.86956389 48.16878244 -344.73240909 46.44881162 -342.5 44.75 C-341.85361572 44.25129395 -341.20723145 43.75258789 -340.54125977 43.23876953 C-338.69861779 41.81992826 -336.84988012 40.40938175 -335 39 C-333.88431641 38.13761719 -333.88431641 38.13761719 -332.74609375 37.2578125 C-330.85079942 35.80871057 -328.93326669 34.39806857 -327 33 C-326.11957031 32.360625 -325.23914063 31.72125 -324.33203125 31.0625 C-294.20508548 9.67962341 -260.54434815 -6.88838167 -225 -17 C-224.28102539 -17.21317871 -223.56205078 -17.42635742 -222.82128906 -17.64599609 C-207.81351426 -22.08269882 -192.45887415 -24.67633728 -177 -27 C-176.10684082 -27.13567383 -175.21368164 -27.27134766 -174.29345703 -27.41113281 C-115.79417589 -35.81042293 -53.22637909 -24.81181726 0 0 Z " fill="#FDFDFD" transform="translate(739,332)"/> 4 - <path d="" fill="#FFFFFF" transform="translate(0,0)"/> 1 + <svg width="150" height="150" viewBox="0 0 150 150" fill="none" xmlns="http://www.w3.org/2000/svg"> 2 + <path d="M143.619 35.5547C139.137 27.8262 127.307 26.0859 109.342 30.4805C101.025 24.0495 91.0706 20.08 80.6105 19.0229C70.1504 17.9658 59.6035 19.8635 50.1679 24.5004C40.7323 29.1373 32.7863 36.3276 27.2325 45.2544C21.6788 54.1812 18.74 64.4866 18.7499 75C18.7506 77.4115 18.9033 79.8206 19.2069 82.2129C2.9823 99.0234 3.21668 108.984 6.3866 114.445C9.37488 119.625 15.6093 121.875 23.8124 121.875C29.5078 121.757 35.1697 120.971 40.6815 119.531C48.9996 125.956 58.9523 129.92 69.4098 130.973C79.8672 132.026 90.4104 130.126 99.8423 125.488C109.274 120.851 117.217 113.661 122.769 104.737C128.32 95.8126 131.259 85.5103 131.25 75C131.251 72.6003 131.1 70.2029 130.799 67.8223C138.123 60.2051 142.998 52.9688 144.656 46.7754C145.799 42.4863 145.453 38.7129 143.619 35.5547ZM74.9999 28.125C85.6167 28.1359 95.9163 31.7457 104.217 38.365C112.518 44.9844 118.329 54.2222 120.703 64.5703C110.707 73.9805 97.1776 83.6309 84.3339 91.0137C68.1913 100.277 54.1874 106.055 43.0194 109.219C36.1409 102.803 31.3532 94.4659 29.2795 85.2915C27.2059 76.1171 27.9423 66.5309 31.393 57.7809C34.8437 49.0309 40.8488 41.5224 48.6264 36.233C56.4041 30.9437 65.5941 28.1184 74.9999 28.125ZM14.496 109.74C13.6405 108.27 14.1151 105.498 15.7968 102.123C17.4597 98.9609 19.4829 96.0018 21.8261 93.3047C24.1487 100.034 27.7277 106.262 32.3729 111.656C22.2655 113.355 15.9608 112.271 14.496 109.74ZM74.9999 121.875C67.0963 121.883 59.3209 119.879 52.4061 116.051C65.0981 111.562 77.3443 105.901 88.9862 99.1406C101.631 91.8809 112.822 84.0117 121.84 76.2422C121.506 88.4482 116.426 100.043 107.68 108.564C98.934 117.085 87.2104 121.86 74.9999 121.875ZM135.598 44.3496C134.601 48.0469 131.971 52.2774 128.197 56.7305C125.881 49.9929 122.301 43.7587 117.65 38.3613C125.976 36.9844 133.687 37.0899 135.521 40.2598C136.049 41.1797 136.078 42.5567 135.598 44.3496Z" fill="white"/> 5 3 </svg>
+5
public/logo2.svg
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1280" height="1280"> 3 + <path d="M0 0 C0.81952148 0.37697021 1.63904297 0.75394043 2.48339844 1.14233398 C11.60285155 5.34423447 20.53345418 9.57571453 29 15 C30.18360833 15.72476307 31.36863018 16.44722038 32.5546875 17.16796875 C46.72974953 25.82640202 60.36518708 35.19579918 73 46 C74.16665776 46.99219797 75.33332501 47.98438479 76.5 48.9765625 C79.49524674 51.52960075 82.4772543 54.09757669 85.45507812 56.67089844 C86.77004037 57.80216495 88.09493747 58.92186671 89.421875 60.0390625 C93.40501694 63.42010158 96.85096472 66.9899968 100.2265625 70.9765625 C102.02461917 73.02808972 103.9157426 74.91519541 105.875 76.8125 C117.27976871 88.08567523 126.98680285 101.77032865 136 115 C136.72445312 116.02609375 137.44890625 117.0521875 138.1953125 118.109375 C149.2185272 133.93422347 158.34831911 151.30931379 166 169 C166.47308594 170.08667969 166.94617188 171.17335938 167.43359375 172.29296875 C173.60118867 187.08516795 178.77580507 202.5412441 183 218 C191.44559799 218.17788528 199.80780198 217.69099294 208.22385406 217.07402039 C210.57253644 216.90208377 212.92154201 216.73537984 215.27069092 216.56994629 C221.9422003 216.09910602 228.612987 215.61832316 235.28369141 215.13623047 C239.38744579 214.84000895 243.49154851 214.54903854 247.5958786 214.26091003 C249.88180192 214.09880775 252.16722718 213.93067445 254.45269775 213.7623291 C261.35894704 213.26645294 268.26668378 212.8695614 275.19042969 212.74414062 C276.94356476 212.70673767 276.94356476 212.70673767 278.7321167 212.6685791 C283.6286285 213.1651716 286.87960948 214.81736556 290.25 218.375 C292.86510786 222.2976618 294.04899829 224.65254715 293.875 229.4375 C292.5211383 234.9496512 290.58481365 237.89055902 285.91914368 241.15673828 C279.09492723 244.37226141 271.22051996 243.4377612 263.85620117 243.3046875 C261.98679061 243.28616696 260.11736129 243.26947191 258.24792004 243.25436401 C253.95263776 243.21536571 249.65777666 243.1624677 245.36275864 243.10095215 C238.03405749 242.99698969 230.70519033 242.92239103 223.37612181 242.85097337 C205.08949117 242.67173396 186.80341632 242.45106706 168.51730435 242.22583044 C159.25423381 242.11181257 149.99112738 242.00084257 140.72801854 241.88998723 C124.2191264 241.69234224 107.71026259 241.49242862 91.20141602 241.29101562 C75.19850098 241.09578017 59.19557304 240.90165839 43.19262695 240.70898438 C42.20029355 240.69703639 41.20796015 240.68508841 40.18555603 240.67277837 C35.20554558 240.6128243 30.22553488 240.5528916 25.24552405 240.49296951 C-15.83635763 239.99862339 -56.91819366 239.50056505 -98 239 C-98 238.34 -98 237.68 -98 237 C-94.0772445 236.11799576 -90.25605616 235.73677137 -86.24584961 235.47509766 C-85.58342034 235.43094601 -84.92099108 235.38679436 -84.2384882 235.34130478 C-82.04330016 235.19576448 -79.84783634 235.05492764 -77.65234375 234.9140625 C-76.09722926 234.81179793 -74.54213522 234.70922196 -72.98706055 234.60635376 C-68.83005453 234.33214466 -64.67280103 234.06187973 -60.51548386 233.79243469 C-56.21599178 233.51319162 -51.91671364 233.23069836 -47.61743164 232.94824219 C-46.76663497 232.89235176 -45.9158383 232.83646133 -45.03925991 232.77887726 C-43.32703585 232.66639738 -41.61481248 232.55390708 -39.9025898 232.44140625 C-37.34604683 232.27358827 -34.78947358 232.10623782 -32.2328949 231.93896484 C-22.87255654 231.32580498 -13.51349711 230.69804944 -4.15625 230.0390625 C-3.17010208 229.96968979 -2.18395416 229.90031708 -1.16792297 229.82884216 C0.69423473 229.69778159 2.55639194 229.56671403 4.41854858 229.43563843 C20.27341435 228.32242873 36.1087474 227.41589311 52 227 C28.48303999 174.33120936 -8.88782019 132.94486147 -63.59375 111.59765625 C-67.04662044 110.3410253 -70.50394586 109.12915527 -74 108 C-74.94004883 107.69078613 -75.88009766 107.38157227 -76.84863281 107.06298828 C-118.45317339 93.75330041 -164.24458983 95.77523221 -205 111 C-205.8161377 111.30276855 -206.63227539 111.60553711 -207.47314453 111.91748047 C-230.53456122 120.64579466 -252.10337515 134.03226571 -270 151 C-271.68585984 152.48103575 -273.37338885 153.96017343 -275.0625 155.4375 C-300.22364275 178.21166031 -318.80195062 210.61137709 -328.39599609 242.97558594 C-328.95177564 244.83836846 -329.54636871 246.68945411 -330.14453125 248.5390625 C-333.58184819 259.94529026 -334.52692461 271.69369358 -335.67456055 283.51074219 C-336 286 -336 286 -337 289 C-336.24820213 288.98955375 -335.49640427 288.97910749 -334.72182465 288.96834469 C-293.24246821 288.39439767 -251.76291629 287.90813975 -210.28125 287.53515625 C-209.23160655 287.52569292 -208.1819631 287.5162296 -207.10051227 287.5064795 C-197.31794611 287.41828419 -187.53537512 287.3306339 -177.75279903 287.24354649 C-106.47918426 286.60890316 -35.20721591 285.9227042 36.0625 284.9375 C37.62000779 284.91601508 39.17751562 284.89453324 40.7350235 284.8730545 C55.2741428 284.67240874 69.8132208 284.468893 84.3522644 284.26283836 C136.85791209 283.51880763 189.36409672 282.94243828 241.87305307 282.48904628 C246.38426787 282.45004984 250.8954738 282.41012889 255.40667725 282.36984253 C268.67279676 282.25224972 281.93888756 282.1470754 295.20529938 282.068326 C301.35536669 282.03155845 307.50527833 281.98835802 313.6552124 281.93341064 C319.95170712 281.87751368 326.2481379 281.8366901 332.54480553 281.80629158 C334.91375068 281.79235237 337.28267174 281.77321585 339.65152931 281.74853325 C342.91841738 281.71539305 346.18487402 281.70125976 349.4519043 281.69165039 C350.40687742 281.67755945 351.36185055 281.66346851 352.34576225 281.64895058 C360.63382175 281.65973849 367.26181189 283.53746305 373.4609375 289.26953125 C377.91126877 294.27333011 380.10440405 300.31814082 380 307 C379.2633535 313.73505373 376.30879778 319.88072763 371.36328125 324.54296875 C364.94911712 329.45809228 358.17568314 330.31464934 350.3125 330.1875 C349.60544922 330.18685547 348.89839844 330.18621094 348.16992188 330.18554688 C342.52031747 330.14249316 336.8900743 329.84474055 331.25 329.54296875 C319.50622724 328.92311547 307.75605631 328.61867614 296.00097179 328.29819489 C271.19987653 327.62177489 246.41454064 326.76666647 221.62908173 325.65774918 C188.37191297 324.16991624 155.10709618 323.11636312 121.83016777 322.17552948 C116.83594671 322.03412419 111.84178383 321.89076116 106.84765625 321.74609375 C105.86691006 321.71772808 104.88616386 321.68936241 103.87569809 321.66013718 C87.60406101 321.18452577 71.34266729 320.53954986 55.07943153 319.83660507 C38.37624292 319.1161931 21.67655252 318.57284445 4.96310425 318.16629028 C-22.95005425 317.4841153 -50.84562012 316.51288028 -78.74337769 315.37091064 C-83.50076148 315.17617174 -88.25817341 314.98213834 -93.015625 314.7890625 C-94.21104007 314.74052061 -94.21104007 314.74052061 -95.43060493 314.69099808 C-116.38782218 313.84312763 -137.35012931 313.14386423 -158.3125 312.4375 C-181.3783415 311.65978759 -204.44001782 310.86464293 -227.49557495 309.81860352 C-248.019523 308.89296795 -268.55379362 308.29634458 -289.08935547 307.69702148 C-305.06426974 307.2287885 -321.03269911 306.68195513 -337 306 C-332.83721069 350.28271298 -321.03864146 390.35389674 -292 425 C-291.54044922 425.54978516 -291.08089844 426.09957031 -290.60742188 426.66601562 C-270.49209967 450.66278202 -245.21131168 471.03688217 -216 483 C-214.86433594 483.47953125 -213.72867187 483.9590625 -212.55859375 484.453125 C-166.45230384 503.6473276 -113.04922114 506.33421506 -66.0625 488.125 C-63.69932313 487.10393917 -61.34516891 486.06176878 -59 485 C-57.64873805 484.42117287 -56.29716258 483.84307723 -54.9453125 483.265625 C-36.87201051 475.35334032 -15.51439117 463.69376054 -7.625 444.6875 C-6.23861212 436.50781149 -7.30923154 428.90899331 -12 422 C-15.78006204 416.99967521 -19.59482757 413.24310346 -25 410 C-25.84498047 409.37931641 -25.84498047 409.37931641 -26.70703125 408.74609375 C-39.74845449 399.30585247 -55.43098238 393.79178019 -70.59179688 388.79980469 C-72.8874013 388.03739592 -75.17098743 387.24700731 -77.453125 386.4453125 C-94.46665541 380.5215192 -111.97492709 376.24400154 -129.58813477 372.51586914 C-131.42643526 372.12267864 -133.26247165 371.71888686 -135.09741211 371.31030273 C-143.83687428 369.38482551 -152.59916928 367.83348946 -161.4375 366.4375 C-163.37206055 366.12522461 -163.37206055 366.12522461 -165.34570312 365.80664062 C-174.21378779 364.39005625 -183.09361855 363.14600372 -192 362 C-192 361.01 -192 360.02 -192 359 C-174.93963303 359.24208307 -157.87928634 359.48554849 -140.81896019 359.73049068 C-132.89054582 359.84429281 -124.96212626 359.95770164 -117.03369141 360.07006836 C-107.84275483 360.20037598 -98.65183887 360.33207676 -89.4609375 360.46484375 C-88.70015616 360.47580755 -87.93937483 360.48677135 -87.15553951 360.49806738 C-67.8765974 360.77615397 -48.59910296 361.09006679 -29.32185745 361.47047615 C-3.01784746 361.98873757 23.28473973 362.25424325 49.59298706 362.44555664 C62.43835546 362.5390792 75.28362534 362.64526654 88.12890625 362.75 C89.4088553 362.76035782 90.68880436 362.77071564 92.00753975 362.78138733 C124.73477588 363.04668073 157.46095613 363.38671159 190.18638611 363.82156372 C198.45325137 363.93116943 206.72007292 364.0313398 214.98725033 364.11433029 C220.94016887 364.17467005 226.89280754 364.24914014 232.8454895 364.32983398 C235.19819474 364.35941695 237.55096674 364.38417571 239.90377808 364.40356445 C243.03906095 364.43013636 246.17359396 364.47440242 249.30859375 364.5234375 C250.20195435 364.52665009 251.09531494 364.52986267 252.01574707 364.53317261 C257.39856495 364.64128791 261.2242674 365.45955875 266 368 C267.70091875 370.21858967 267.95238868 371.69052639 268.375 374.4375 C267.86233872 377.94068541 266.47871818 379.52128182 264 382 C261.14387256 382.97054331 258.50107568 383.12186828 255.5 383.140625 C237.48314124 383.46327056 220.98389724 386.36246221 205 395 C203.73542969 395.65742187 203.73542969 395.65742187 202.4453125 396.328125 C179.13021457 409.28923376 166.78509512 430.60877584 154.37109375 453.22924805 C148.12930001 464.59791958 141.71783758 475.56523937 134 486 C133.51966309 486.66 133.03932617 487.32 132.54443359 488 C126.16026194 496.76967189 119.50449706 505.24579868 112.37329102 513.421875 C111.40855875 514.53050244 110.45135077 515.64570077 109.49975586 516.765625 C104.77542249 522.27443144 99.74056099 527.44563145 94.60961914 532.57568359 C93.16718144 534.02034996 91.73298435 535.47289854 90.29882812 536.92578125 C88.93467773 538.29283203 88.93467773 538.29283203 87.54296875 539.6875 C86.71821045 540.51636719 85.89345215 541.34523438 85.04370117 542.19921875 C83 544 83 544 81 544 C81 544.66 81 545.32 81 546 C68.9840536 557.56601008 53.95203579 566.95219487 40 576 C39.09121094 576.60328125 38.18242188 577.2065625 37.24609375 577.828125 C31.76658773 581.41357702 26.21191334 584.50545563 20.31640625 587.3515625 C17.94737407 588.52910264 15.64571165 589.73445795 13.33984375 591.0234375 C1.87345416 597.39507428 -10.03038028 602.27948577 -22.27587891 606.95751953 C-24.44496308 607.78759566 -26.60489965 608.63496421 -28.76171875 609.49609375 C-50.30974428 617.74220139 -73.86861575 622.64622575 -96.75 625.1875 C-97.52223907 625.27371613 -98.29447815 625.35993225 -99.09011841 625.44876099 C-125.94408589 628.37463847 -152.22105241 627.52049032 -179 624 C-179.94004883 623.88253418 -180.88009766 623.76506836 -181.84863281 623.64404297 C-231.68341913 617.35750272 -278.44029652 597.7658453 -320 570 C-320.92425781 569.38382813 -321.84851563 568.76765625 -322.80078125 568.1328125 C-333.85919468 560.5674822 -344.14703878 552.06335109 -354 543 C-355.41207844 541.74481917 -356.8284912 540.49449073 -358.25 539.25 C-358.89324219 538.68667969 -359.53648437 538.12335937 -360.19921875 537.54296875 C-361.78999235 536.17994148 -363.42343723 534.86706017 -365.0625 533.5625 C-368.10505563 530.90835573 -370.62166258 528.08480873 -373.23046875 525.015625 C-374.83077503 523.19275957 -376.48869775 521.53961978 -378.25 519.875 C-383.20730242 514.99515543 -387.30767706 509.37557702 -391.54296875 503.87597656 C-392.98029226 502.02537438 -394.43861788 500.19381589 -395.90625 498.3671875 C-401.41672544 491.49483608 -406.44046932 484.55337566 -411 477 C-412.37430079 474.77040219 -413.74932368 472.54124935 -415.125 470.3125 C-415.79789063 469.21164062 -416.47078125 468.11078125 -417.1640625 466.9765625 C-418.57625843 464.68700229 -420.0243424 462.4356495 -421.5 460.1875 C-436.90389769 435.53092552 -447.26413521 406.07933033 -454 378 C-454.22139648 377.08911621 -454.44279297 376.17823242 -454.67089844 375.23974609 C-460.44738189 351.00141796 -463.8098876 325.9249354 -463 301 C-464.21362213 301.0104686 -465.42724426 301.02093719 -466.67764282 301.03172302 C-477.87407841 301.09810038 -489.00490254 300.81780458 -500.18492508 300.23461723 C-518.06717644 299.31075482 -535.95266072 298.67532138 -553.8515625 298.18359375 C-554.9869622 298.15226978 -556.12236191 298.12094582 -557.29216766 298.08867264 C-564.2312066 297.89827166 -571.17038034 297.7132298 -578.10961914 297.53027344 C-587.49793899 297.2825089 -596.88612916 297.0301319 -606.27421188 296.77354622 C-609.49204809 296.68655439 -612.70995627 296.60280548 -615.92788696 296.51939392 C-627.63337202 296.20732084 -639.31294993 295.7305766 -651 295 C-651 294.34 -651 293.68 -651 293 C-647.26788977 291.75596326 -643.78316281 291.83133129 -639.89428711 291.81054688 C-638.64620569 291.79807718 -638.64620569 291.79807718 -637.3729105 291.78535557 C-634.59107611 291.75864525 -631.8092337 291.73876882 -629.02734375 291.71875 C-627.05822324 291.70094416 -625.08910701 291.68265953 -623.11999512 291.66392517 C-618.91618657 291.62471772 -614.71236708 291.58831685 -610.5085144 291.5541687 C-600.62843159 291.47370501 -590.74847797 291.37938452 -580.86851692 291.28530693 C-578.65935492 291.26432422 -576.45019123 291.24351841 -574.24102592 291.22288704 C-551.699903 291.01204131 -529.16157638 290.68837798 -506.62280273 290.3046875 C-492.08021035 290.06158667 -477.54466498 289.93917051 -463 290 C-463.02392822 289.19892822 -463.04785645 288.39785645 -463.07250977 287.57250977 C-463.23685879 277.53725862 -462.27784296 267.86796153 -460.9375 257.9375 C-460.82740601 257.11051605 -460.71731201 256.2835321 -460.60388184 255.43148804 C-451.80786134 190.21780463 -423.21981592 128.7489231 -379 80 C-378.46036621 79.40396973 -377.92073242 78.80793945 -377.36474609 78.19384766 C-373.94530852 74.4290949 -370.50856591 70.68197919 -367 67 C-366.46874512 66.43812988 -365.93749023 65.87625977 -365.39013672 65.29736328 C-363.96690655 63.82501163 -362.48719596 62.40771151 -361 61 C-360.34 61 -359.68 61 -359 61 C-359 60.34 -359 59.68 -359 59 C-357.3203125 57.2734375 -357.3203125 57.2734375 -355.125 55.375 C-354.40570313 54.74335938 -353.68640625 54.11171875 -352.9453125 53.4609375 C-351 52 -351 52 -349 52 C-349 51.34 -349 50.68 -349 50 C-346.86956389 48.16878244 -344.73240909 46.44881162 -342.5 44.75 C-341.85361572 44.25129395 -341.20723145 43.75258789 -340.54125977 43.23876953 C-338.69861779 41.81992826 -336.84988012 40.40938175 -335 39 C-333.88431641 38.13761719 -333.88431641 38.13761719 -332.74609375 37.2578125 C-330.85079942 35.80871057 -328.93326669 34.39806857 -327 33 C-326.11957031 32.360625 -325.23914063 31.72125 -324.33203125 31.0625 C-294.20508548 9.67962341 -260.54434815 -6.88838167 -225 -17 C-224.28102539 -17.21317871 -223.56205078 -17.42635742 -222.82128906 -17.64599609 C-207.81351426 -22.08269882 -192.45887415 -24.67633728 -177 -27 C-176.10684082 -27.13567383 -175.21368164 -27.27134766 -174.29345703 -27.41113281 C-115.79417589 -35.81042293 -53.22637909 -24.81181726 0 0 Z " fill="#FDFDFD" transform="translate(739,332)"/> 4 + <path d="" fill="#FFFFFF" transform="translate(0,0)"/> 5 + </svg>