chore: Updated links 8b8da6ae
Steve · 2025-05-22 19:21 3 file(s) · +323 −308
public/_redirects (added) +4 −0
1 +
/invalid /404
2 +
/pinata https://pinata.cloud
3 +
4 +
404 /404
src/data/constants.ts +0 −1
31 31
  twitter: "https://twitter.com/stevedylandev",
32 32
  youtube: "https://youtube.com/@stevedylandev",
33 33
  telegram: "https://telegram.me/stevedylandev",
34 -
  ethereum: "https://rainbow.me/stevedylandev.eth",
35 34
  farcaster: "https://warpcast.com/stevedylandev.eth",
36 35
  medium: "https://medium.com/@stevedylandev",
37 36
  linkedin: "https://www.linkedin.com/in/steve-simkins/",
src/pages/links.astro +319 −307
4 4
import DecryptingHeader from "@/components/DecryptingHeader";
5 5
6 6
const meta = {
7 -
	title: "Links",
8 -
	description: "Connect with me on all the things",
7 +
  title: "Links",
8 +
  description: "Connect with me on all the things",
9 9
};
10 10
---
11 11
12 12
<PageLayout meta={meta}>
13 -
	<div class="space-y-6">
14 -
		<DecryptingHeader text="Links" className="title mb-6" />
15 -
		<ul class="flex flex-col items-start gap-x-4 sm:flex-initial">
16 -
			<li>
17 -
				<a class="flex items-center gap-4 p-2 sm:hover:text-link" href={SOCIAL_LINKS.website}>
18 -
					<svg
19 -
						xmlns="http://www.w3.org/2000/svg"
20 -
						class="h-6 w-6"
21 -
						width="44"
22 -
						height="44"
23 -
						viewBox="0 0 24 24"
24 -
						stroke-width="1.5"
25 -
						stroke="currentColor"
26 -
						fill="none"
27 -
						stroke-linecap="round"
28 -
						stroke-linejoin="round"
29 -
					>
30 -
						<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
31 -
						<path d="M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"></path>
32 -
						<path d="M3.6 9h16.8"></path>
33 -
						<path d="M3.6 15h16.8"></path>
34 -
						<path d="M11.5 3a17 17 0 0 0 0 18"></path>
35 -
						<path d="M12.5 3a17 17 0 0 1 0 18"></path>
36 -
					</svg>
37 -
					Website
38 -
					<span class="sr-only">Website</span>
39 -
				</a>
40 -
			</li>
41 -
			<li>
42 -
				<a class="flex items-center gap-4 p-2 sm:hover:text-link" href={SOCIAL_LINKS.orbiter}>
43 -
					<svg
44 -
						xmlns="http://www.w3.org/2000/svg"
45 -
						class="h-6 w-6"
46 -
						viewBox="0 0 24 24"
47 -
						width="32"
48 -
						height="32"
49 -
						viewBox="0 0 24 24"
50 -
						><g
51 -
							fill="none"
52 -
							stroke="currentColor"
53 -
							stroke-linecap="round"
54 -
							stroke-linejoin="round"
55 -
							stroke-width="1.5"
56 -
							color="currentColor"
57 -
							><path d="M17 12a5 5 0 1 1-10 0a5 5 0 0 1 10 0"></path><path
58 -
								d="M18.646 4.528a2 2 0 1 0 2.708 2.944a2 2 0 0 0-2.708-2.944m0 0A9.96 9.96 0 0 0 12 2C6.477 2 2 6.477 2 12s4.477 10 10 10s10-4.477 10-10q0-.507-.05-1"
59 -
							></path></g
60 -
						></svg
61 -
					>
62 -
					Orbiter
63 -
					<span class="sr-only">Orbiter</span>
64 -
				</a>
65 -
			</li>
66 -
			<li>
67 -
				<a
68 -
					class="flex items-center gap-4 p-2 sm:hover:text-link"
69 -
					href={SOCIAL_LINKS.github}
70 -
					target="_blank"
71 -
					rel="noopener noreferrer"
72 -
				>
73 -
					<svg
74 -
						class="h-6 w-6"
75 -
						aria-hidden="true"
76 -
						focusable="false"
77 -
						xmlns="http://www.w3.org/2000/svg"
78 -
						viewBox="0 0 24 24"
79 -
						stroke-width="1"
80 -
						stroke="currentColor"
81 -
						fill="none"
82 -
						stroke-linecap="round"
83 -
						stroke-linejoin="round"
84 -
					>
85 -
						<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
86 -
						<path
87 -
							d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"
88 -
						>
89 -
						</path>
90 -
					</svg>
91 -
					GitHub
92 -
					<span class="sr-only">Github</span>
93 -
				</a>
94 -
			</li>
13 +
  <div class="space-y-6">
14 +
    <DecryptingHeader text="Links" className="title mb-6" />
15 +
    <ul class="flex flex-col items-start gap-x-4 sm:flex-initial">
16 +
      <li>
17 +
        <a
18 +
          class="flex items-center gap-4 p-2 sm:hover:text-link"
19 +
          href={SOCIAL_LINKS.website}
20 +
        >
21 +
          <svg
22 +
            xmlns="http://www.w3.org/2000/svg"
23 +
            class="h-6 w-6"
24 +
            width="44"
25 +
            height="44"
26 +
            viewBox="0 0 24 24"
27 +
            stroke-width="1.5"
28 +
            stroke="currentColor"
29 +
            fill="none"
30 +
            stroke-linecap="round"
31 +
            stroke-linejoin="round"
32 +
          >
33 +
            <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
34 +
            <path d="M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"></path>
35 +
            <path d="M3.6 9h16.8"></path>
36 +
            <path d="M3.6 15h16.8"></path>
37 +
            <path d="M11.5 3a17 17 0 0 0 0 18"></path>
38 +
            <path d="M12.5 3a17 17 0 0 1 0 18"></path>
39 +
          </svg>
40 +
          Website
41 +
          <span class="sr-only">Website</span>
42 +
        </a>
43 +
      </li>
44 +
      <li>
45 +
        <a
46 +
          class="flex items-center gap-4 p-2 sm:hover:text-link"
47 +
          href={SOCIAL_LINKS.orbiter}
48 +
        >
49 +
          <svg
50 +
            xmlns="http://www.w3.org/2000/svg"
51 +
            class="h-6 w-6"
52 +
            viewBox="0 0 24 24"
53 +
            width="32"
54 +
            height="32"
55 +
            viewBox="0 0 24 24"
56 +
            ><g
57 +
              fill="none"
58 +
              stroke="currentColor"
59 +
              stroke-linecap="round"
60 +
              stroke-linejoin="round"
61 +
              stroke-width="1.5"
62 +
              color="currentColor"
63 +
              ><path d="M17 12a5 5 0 1 1-10 0a5 5 0 0 1 10 0"></path><path
64 +
                d="M18.646 4.528a2 2 0 1 0 2.708 2.944a2 2 0 0 0-2.708-2.944m0 0A9.96 9.96 0 0 0 12 2C6.477 2 2 6.477 2 12s4.477 10 10 10s10-4.477 10-10q0-.507-.05-1"
65 +
              ></path></g
66 +
            ></svg
67 +
          >
68 +
          Orbiter
69 +
          <span class="sr-only">Orbiter</span>
70 +
        </a>
71 +
      </li>
72 +
      <li>
73 +
        <a
74 +
          class="flex items-center gap-4 p-2 sm:hover:text-link"
75 +
          href={SOCIAL_LINKS.github}
76 +
          target="_blank"
77 +
          rel="noopener noreferrer"
78 +
        >
79 +
          <svg
80 +
            class="h-6 w-6"
81 +
            aria-hidden="true"
82 +
            focusable="false"
83 +
            xmlns="http://www.w3.org/2000/svg"
84 +
            viewBox="0 0 24 24"
85 +
            stroke-width="1"
86 +
            stroke="currentColor"
87 +
            fill="none"
88 +
            stroke-linecap="round"
89 +
            stroke-linejoin="round"
90 +
          >
91 +
            <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
92 +
            <path
93 +
              d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"
94 +
            >
95 +
            </path>
96 +
          </svg>
97 +
          GitHub
98 +
          <span class="sr-only">Github</span>
99 +
        </a>
100 +
      </li>
95 101
96 -
			<li>
97 -
				<a
98 -
					class="flex items-center gap-4 p-2 sm:hover:text-link"
99 -
					href={SOCIAL_LINKS.threads}
100 -
					target="_blank"
101 -
					rel="noopener noreferrer"
102 -
				>
103 -
					<svg
104 -
						class="h-6 w-6"
105 -
						aria-hidden="true"
106 -
						focusable="false"
107 -
						xmlns="http://www.w3.org/2000/svg"
108 -
						viewBox="0 0 198 198"
109 -
						stroke-width="1.5"
110 -
						stroke="currentColor"
111 -
						fill="currentColor"
112 -
						stroke-linecap="round"
113 -
						stroke-linejoin="round"
114 -
					>
115 -
						<path
116 -
							d="M141.537 88.9883C140.71 88.5919 139.87 88.2104 139.019 87.8451C137.537 60.5382 122.616 44.905 97.5619 44.745C97.4484 44.7443 97.3355 44.7443 97.222 44.7443C82.2364 44.7443 69.7731 51.1409 62.102 62.7807L75.881 72.2328C81.6116 63.5383 90.6052 61.6848 97.2286 61.6848C97.3051 61.6848 97.3819 61.6848 97.4576 61.6855C105.707 61.7381 111.932 64.1366 115.961 68.814C118.893 72.2193 120.854 76.925 121.825 82.8638C114.511 81.6207 106.601 81.2385 98.145 81.7233C74.3247 83.0954 59.0111 96.9879 60.0396 116.292C60.5615 126.084 65.4397 134.508 73.775 140.011C80.8224 144.663 89.899 146.938 99.3323 146.423C111.79 145.74 121.563 140.987 128.381 132.296C133.559 125.696 136.834 117.143 138.28 106.366C144.217 109.949 148.617 114.664 151.047 120.332C155.179 129.967 155.42 145.8 142.501 158.708C131.182 170.016 117.576 174.908 97.0135 175.059C74.2042 174.89 56.9538 167.575 45.7381 153.317C35.2355 139.966 29.8077 120.682 29.6052 96C29.8077 71.3178 35.2355 52.0336 45.7381 38.6827C56.9538 24.4249 74.2039 17.11 97.0132 16.9405C119.988 17.1113 137.539 24.4614 149.184 38.788C154.894 45.8136 159.199 54.6488 162.037 64.9503L178.184 60.6422C174.744 47.9622 169.331 37.0357 161.965 27.974C147.036 9.60668 125.202 0.195148 97.0695 0H96.9569C68.8816 0.19447 47.2921 9.6418 32.7883 28.0793C19.8819 44.4864 13.2244 67.3157 13.0007 95.9325L13 96L13.0007 96.0675C13.2244 124.684 19.8819 147.514 32.7883 163.921C47.2921 182.358 68.8816 191.806 96.9569 192H97.0695C122.03 191.827 139.624 185.292 154.118 170.811C173.081 151.866 172.51 128.119 166.26 113.541C161.776 103.087 153.227 94.5962 141.537 88.9883ZM98.4405 129.507C88.0005 130.095 77.1544 125.409 76.6196 115.372C76.2232 107.93 81.9158 99.626 99.0812 98.6368C101.047 98.5234 102.976 98.468 104.871 98.468C111.106 98.468 116.939 99.0737 122.242 100.233C120.264 124.935 108.662 128.946 98.4405 129.507Z"
117 -
						></path>
118 -
					</svg>
119 -
					Threads
120 -
					<span class="sr-only">threads</span>
121 -
				</a>
122 -
			</li>
123 -
			<li>
124 -
				<a
125 -
					class="flex items-center gap-4 p-2 sm:hover:text-link"
126 -
					href={SOCIAL_LINKS.farcaster}
127 -
					target="_blank"
128 -
					rel="noopener noreferrer"
129 -
				>
130 -
					<svg
131 -
						xmlns="http://www.w3.org/2000/svg"
132 -
						class="h-5 w-5"
133 -
						viewBox="0 0 24 24"
134 -
						stroke-width="1.5"
135 -
						stroke="currentColor"
136 -
						fill="none"
137 -
						stroke-linecap="round"
138 -
						stroke-linejoin="round"
139 -
					>
140 -
						<path
141 -
							d="M1.30081 5.95589L0.663137 3.72734H4.11868H4.61868V3.22734V0.5H19.0974V3.22734V3.72734H19.5974H23.3371L22.7003 5.95589H22.2967H21.7967V6.45589V19.5144V20.0144H22.2967C22.3976 20.0144 22.5064 20.1036 22.5064 20.247V21.1275V21.6275H23.0064H23.1484C23.2487 21.6275 23.3581 21.7161 23.3581 21.8612V22.2418H16.4058V21.8612C16.4058 21.7161 16.5151 21.6275 16.6155 21.6275H16.7574H17.2574V21.1275V20.247C17.2574 20.125 17.34 20.0375 17.4271 20.0183L17.82 19.9314L17.8192 19.529L17.8035 12.3237L17.8035 12.3024L17.8016 12.2813C17.5291 9.15908 14.985 6.68965 11.8581 6.68965C8.73115 6.68965 6.18706 9.15908 5.91448 12.2813L5.91263 12.3025L5.91259 12.3238L5.89816 19.523L5.89729 19.9535L6.32283 20.0183C6.42585 20.034 6.55708 20.0886 6.65436 20.1647C6.71995 20.216 6.73823 20.2498 6.74258 20.2594V21.1275V21.6275H7.24258H7.38452C7.486 21.6275 7.59543 21.7173 7.59543 21.8612V22.2418H0.641941V21.8612C0.641941 21.7173 0.751371 21.6275 0.852847 21.6275H0.994788H1.49479V21.1275V20.247C1.49479 20.1036 1.60357 20.0144 1.70449 20.0144H2.20449V19.5144V6.45589V5.95589H1.70449H1.30081Z"
142 -
						></path>
143 -
					</svg>
144 -
					Farcaster
145 -
					<span class="sr-only">Farcaster</span>
146 -
				</a>
147 -
			</li>
102 +
      <li>
103 +
        <a
104 +
          class="flex items-center gap-4 p-2 sm:hover:text-link"
105 +
          href={SOCIAL_LINKS.threads}
106 +
          target="_blank"
107 +
          rel="noopener noreferrer"
108 +
        >
109 +
          <svg
110 +
            class="h-6 w-6"
111 +
            aria-hidden="true"
112 +
            focusable="false"
113 +
            xmlns="http://www.w3.org/2000/svg"
114 +
            viewBox="0 0 198 198"
115 +
            stroke-width="1.5"
116 +
            stroke="currentColor"
117 +
            fill="currentColor"
118 +
            stroke-linecap="round"
119 +
            stroke-linejoin="round"
120 +
          >
121 +
            <path
122 +
              d="M141.537 88.9883C140.71 88.5919 139.87 88.2104 139.019 87.8451C137.537 60.5382 122.616 44.905 97.5619 44.745C97.4484 44.7443 97.3355 44.7443 97.222 44.7443C82.2364 44.7443 69.7731 51.1409 62.102 62.7807L75.881 72.2328C81.6116 63.5383 90.6052 61.6848 97.2286 61.6848C97.3051 61.6848 97.3819 61.6848 97.4576 61.6855C105.707 61.7381 111.932 64.1366 115.961 68.814C118.893 72.2193 120.854 76.925 121.825 82.8638C114.511 81.6207 106.601 81.2385 98.145 81.7233C74.3247 83.0954 59.0111 96.9879 60.0396 116.292C60.5615 126.084 65.4397 134.508 73.775 140.011C80.8224 144.663 89.899 146.938 99.3323 146.423C111.79 145.74 121.563 140.987 128.381 132.296C133.559 125.696 136.834 117.143 138.28 106.366C144.217 109.949 148.617 114.664 151.047 120.332C155.179 129.967 155.42 145.8 142.501 158.708C131.182 170.016 117.576 174.908 97.0135 175.059C74.2042 174.89 56.9538 167.575 45.7381 153.317C35.2355 139.966 29.8077 120.682 29.6052 96C29.8077 71.3178 35.2355 52.0336 45.7381 38.6827C56.9538 24.4249 74.2039 17.11 97.0132 16.9405C119.988 17.1113 137.539 24.4614 149.184 38.788C154.894 45.8136 159.199 54.6488 162.037 64.9503L178.184 60.6422C174.744 47.9622 169.331 37.0357 161.965 27.974C147.036 9.60668 125.202 0.195148 97.0695 0H96.9569C68.8816 0.19447 47.2921 9.6418 32.7883 28.0793C19.8819 44.4864 13.2244 67.3157 13.0007 95.9325L13 96L13.0007 96.0675C13.2244 124.684 19.8819 147.514 32.7883 163.921C47.2921 182.358 68.8816 191.806 96.9569 192H97.0695C122.03 191.827 139.624 185.292 154.118 170.811C173.081 151.866 172.51 128.119 166.26 113.541C161.776 103.087 153.227 94.5962 141.537 88.9883ZM98.4405 129.507C88.0005 130.095 77.1544 125.409 76.6196 115.372C76.2232 107.93 81.9158 99.626 99.0812 98.6368C101.047 98.5234 102.976 98.468 104.871 98.468C111.106 98.468 116.939 99.0737 122.242 100.233C120.264 124.935 108.662 128.946 98.4405 129.507Z"
123 +
            ></path>
124 +
          </svg>
125 +
          Threads
126 +
          <span class="sr-only">threads</span>
127 +
        </a>
128 +
      </li>
129 +
      <li>
130 +
        <a
131 +
          class="flex items-center gap-4 p-2 sm:hover:text-link"
132 +
          href={SOCIAL_LINKS.farcaster}
133 +
          target="_blank"
134 +
          rel="noopener noreferrer"
135 +
        >
136 +
          <svg
137 +
            xmlns="http://www.w3.org/2000/svg"
138 +
            class="h-5 w-5"
139 +
            viewBox="0 0 24 24"
140 +
            stroke-width="1.5"
141 +
            stroke="currentColor"
142 +
            fill="none"
143 +
            stroke-linecap="round"
144 +
            stroke-linejoin="round"
145 +
          >
146 +
            <path
147 +
              d="M1.30081 5.95589L0.663137 3.72734H4.11868H4.61868V3.22734V0.5H19.0974V3.22734V3.72734H19.5974H23.3371L22.7003 5.95589H22.2967H21.7967V6.45589V19.5144V20.0144H22.2967C22.3976 20.0144 22.5064 20.1036 22.5064 20.247V21.1275V21.6275H23.0064H23.1484C23.2487 21.6275 23.3581 21.7161 23.3581 21.8612V22.2418H16.4058V21.8612C16.4058 21.7161 16.5151 21.6275 16.6155 21.6275H16.7574H17.2574V21.1275V20.247C17.2574 20.125 17.34 20.0375 17.4271 20.0183L17.82 19.9314L17.8192 19.529L17.8035 12.3237L17.8035 12.3024L17.8016 12.2813C17.5291 9.15908 14.985 6.68965 11.8581 6.68965C8.73115 6.68965 6.18706 9.15908 5.91448 12.2813L5.91263 12.3025L5.91259 12.3238L5.89816 19.523L5.89729 19.9535L6.32283 20.0183C6.42585 20.034 6.55708 20.0886 6.65436 20.1647C6.71995 20.216 6.73823 20.2498 6.74258 20.2594V21.1275V21.6275H7.24258H7.38452C7.486 21.6275 7.59543 21.7173 7.59543 21.8612V22.2418H0.641941V21.8612C0.641941 21.7173 0.751371 21.6275 0.852847 21.6275H0.994788H1.49479V21.1275V20.247C1.49479 20.1036 1.60357 20.0144 1.70449 20.0144H2.20449V19.5144V6.45589V5.95589H1.70449H1.30081Z"
148 +
            ></path>
149 +
          </svg>
150 +
          Farcaster
151 +
          <span class="sr-only">Farcaster</span>
152 +
        </a>
153 +
      </li>
148 154
149 -
			<li>
150 -
				<a
151 -
					class="flex items-center gap-4 p-2 sm:hover:text-link"
152 -
					href={SOCIAL_LINKS.twitter}
153 -
					target="_blank"
154 -
					rel="noopener noreferrer"
155 -
				>
156 -
					<svg
157 -
						class="h-6 w-6"
158 -
						aria-hidden="true"
159 -
						focusable="false"
160 -
						xmlns="http://www.w3.org/2000/svg"
161 -
						viewBox="0 0 24 24"
162 -
						stroke-width="1.5"
163 -
						stroke="currentColor"
164 -
						fill="none"
165 -
						stroke-linecap="round"
166 -
						stroke-linejoin="round"
167 -
					>
168 -
						<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
169 -
						<path
170 -
							d="M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c-.002 -.249 1.51 -2.772 1.818 -4.013z"
171 -
						>
172 -
						</path>
173 -
					</svg>
174 -
					Twitter
175 -
					<span class="sr-only">Twitter</span>
176 -
				</a>
177 -
			</li>
155 +
      <li>
156 +
        <a
157 +
          class="flex items-center gap-4 p-2 sm:hover:text-link"
158 +
          href={SOCIAL_LINKS.twitter}
159 +
          target="_blank"
160 +
          rel="noopener noreferrer"
161 +
        >
162 +
          <svg
163 +
            class="h-6 w-6"
164 +
            aria-hidden="true"
165 +
            focusable="false"
166 +
            xmlns="http://www.w3.org/2000/svg"
167 +
            viewBox="0 0 24 24"
168 +
            stroke-width="1.5"
169 +
            stroke="currentColor"
170 +
            fill="none"
171 +
            stroke-linecap="round"
172 +
            stroke-linejoin="round"
173 +
          >
174 +
            <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
175 +
            <path
176 +
              d="M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c-.002 -.249 1.51 -2.772 1.818 -4.013z"
177 +
            >
178 +
            </path>
179 +
          </svg>
180 +
          Twitter
181 +
          <span class="sr-only">Twitter</span>
182 +
        </a>
183 +
      </li>
178 184
179 -
			<li>
180 -
				<a
181 -
					class="flex items-center gap-4 p-2 sm:hover:text-link"
182 -
					href={SOCIAL_LINKS.telegram}
183 -
					target="_blank"
184 -
					rel="noopener noreferrer"
185 -
				>
186 -
					<svg
187 -
						xmlns="http://www.w3.org/2000/svg"
188 -
						class="h-6 w-6"
189 -
						width="44"
190 -
						height="44"
191 -
						viewBox="0 0 24 24"
192 -
						stroke-width="1.5"
193 -
						stroke="currentColor"
194 -
						fill="none"
195 -
						stroke-linecap="round"
196 -
						stroke-linejoin="round"
197 -
					>
198 -
						<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
199 -
						<path d="M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"></path>
200 -
					</svg>
201 -
					Telegram
202 -
					<span class="sr-only">Telegram</span>
203 -
				</a>
204 -
			</li>
185 +
      <li>
186 +
        <a
187 +
          class="flex items-center gap-4 p-2 sm:hover:text-link"
188 +
          href={SOCIAL_LINKS.telegram}
189 +
          target="_blank"
190 +
          rel="noopener noreferrer"
191 +
        >
192 +
          <svg
193 +
            xmlns="http://www.w3.org/2000/svg"
194 +
            class="h-6 w-6"
195 +
            width="44"
196 +
            height="44"
197 +
            viewBox="0 0 24 24"
198 +
            stroke-width="1.5"
199 +
            stroke="currentColor"
200 +
            fill="none"
201 +
            stroke-linecap="round"
202 +
            stroke-linejoin="round"
203 +
          >
204 +
            <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
205 +
            <path d="M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"></path>
206 +
          </svg>
207 +
          Telegram
208 +
          <span class="sr-only">Telegram</span>
209 +
        </a>
210 +
      </li>
205 211
206 -
			<li>
207 -
				<a
208 -
					class="flex items-center gap-4 p-2 sm:hover:text-link"
209 -
					href={SOCIAL_LINKS.linkedin}
210 -
					target="_blank"
211 -
					rel="noopener noreferrer"
212 -
				>
213 -
					<svg
214 -
						xmlns="http://www.w3.org/2000/svg"
215 -
						class="h-6 w-6"
216 -
						width="44"
217 -
						height="44"
218 -
						viewBox="0 0 24 24"
219 -
						stroke-width="1.5"
220 -
						stroke="currentColor"
221 -
						fill="none"
222 -
						stroke-linecap="round"
223 -
						stroke-linejoin="round"
224 -
					>
225 -
						<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
226 -
						<path
227 -
							d="M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"
228 -
						></path>
229 -
						<path d="M8 11l0 5"></path>
230 -
						<path d="M8 8l0 .01"></path>
231 -
						<path d="M12 16l0 -5"></path>
232 -
						<path d="M16 16v-3a2 2 0 0 0 -4 0"></path>
233 -
					</svg>
234 -
					LinkedIn
235 -
					<span class="sr-only">LinkedIn</span>
236 -
				</a>
237 -
			</li>
212 +
      <li>
213 +
        <a
214 +
          class="flex items-center gap-4 p-2 sm:hover:text-link"
215 +
          href={SOCIAL_LINKS.linkedin}
216 +
          target="_blank"
217 +
          rel="noopener noreferrer"
218 +
        >
219 +
          <svg
220 +
            xmlns="http://www.w3.org/2000/svg"
221 +
            class="h-6 w-6"
222 +
            width="44"
223 +
            height="44"
224 +
            viewBox="0 0 24 24"
225 +
            stroke-width="1.5"
226 +
            stroke="currentColor"
227 +
            fill="none"
228 +
            stroke-linecap="round"
229 +
            stroke-linejoin="round"
230 +
          >
231 +
            <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
232 +
            <path
233 +
              d="M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"
234 +
            ></path>
235 +
            <path d="M8 11l0 5"></path>
236 +
            <path d="M8 8l0 .01"></path>
237 +
            <path d="M12 16l0 -5"></path>
238 +
            <path d="M16 16v-3a2 2 0 0 0 -4 0"></path>
239 +
          </svg>
240 +
          LinkedIn
241 +
          <span class="sr-only">LinkedIn</span>
242 +
        </a>
243 +
      </li>
238 244
239 -
			<li>
240 -
				<a
241 -
					class="flex items-center gap-4 p-2 sm:hover:text-link"
242 -
					href={SOCIAL_LINKS.youtube}
243 -
					target="_blank"
244 -
					rel="noopener noreferrer"
245 -
				>
246 -
					<svg
247 -
						xmlns="http://www.w3.org/2000/svg"
248 -
						class="h-6 w-6"
249 -
						width="44"
250 -
						height="44"
251 -
						viewBox="0 0 24 24"
252 -
						stroke-width="1.5"
253 -
						stroke="currentColor"
254 -
						fill="none"
255 -
						stroke-linecap="round"
256 -
						stroke-linejoin="round"
257 -
					>
258 -
						<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
259 -
						<path d="M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"
260 -
						></path>
261 -
						<path d="M10 9l5 3l-5 3z"></path>
262 -
					</svg>
263 -
					YouTube
264 -
					<span class="sr-only">YouTube</span>
265 -
				</a>
266 -
			</li>
245 +
      <li>
246 +
        <a
247 +
          class="flex items-center gap-4 p-2 sm:hover:text-link"
248 +
          href={SOCIAL_LINKS.youtube}
249 +
          target="_blank"
250 +
          rel="noopener noreferrer"
251 +
        >
252 +
          <svg
253 +
            xmlns="http://www.w3.org/2000/svg"
254 +
            class="h-6 w-6"
255 +
            width="44"
256 +
            height="44"
257 +
            viewBox="0 0 24 24"
258 +
            stroke-width="1.5"
259 +
            stroke="currentColor"
260 +
            fill="none"
261 +
            stroke-linecap="round"
262 +
            stroke-linejoin="round"
263 +
          >
264 +
            <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
265 +
            <path
266 +
              d="M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"
267 +
            ></path>
268 +
            <path d="M10 9l5 3l-5 3z"></path>
269 +
          </svg>
270 +
          YouTube
271 +
          <span class="sr-only">YouTube</span>
272 +
        </a>
273 +
      </li>
267 274
268 -
			<li>
269 -
				<a class="flex items-center gap-4 p-2 sm:hover:text-link" href={SOCIAL_LINKS.photos}>
270 -
					<svg
271 -
						xmlns="http://www.w3.org/2000/svg"
272 -
						class="h-6 w-6"
273 -
						width="44"
274 -
						height="44"
275 -
						viewBox="0 0 24 24"
276 -
						stroke-width="1.5"
277 -
						stroke="currentColor"
278 -
						fill="none"
279 -
						stroke-linecap="round"
280 -
						stroke-linejoin="round"
281 -
					>
282 -
						<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
283 -
						<path
284 -
							d="M7 3m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z"
285 -
						></path>
286 -
						<path
287 -
							d="M4.012 7.26a2.005 2.005 0 0 0 -1.012 1.737v10c0 1.1 .9 2 2 2h10c.75 0 1.158 -.385 1.5 -1"
288 -
						></path>
289 -
						<path d="M17 7h.01"></path>
290 -
						<path d="M7 13l3.644 -3.644a1.21 1.21 0 0 1 1.712 0l3.644 3.644"></path>
291 -
						<path d="M15 12l1.644 -1.644a1.21 1.21 0 0 1 1.712 0l2.644 2.644"></path>
292 -
					</svg>
293 -
					Photos
294 -
					<span class="sr-only">Photos</span>
295 -
				</a>
296 -
			</li>
275 +
      <li>
276 +
        <a
277 +
          class="flex items-center gap-4 p-2 sm:hover:text-link"
278 +
          href={SOCIAL_LINKS.photos}
279 +
        >
280 +
          <svg
281 +
            xmlns="http://www.w3.org/2000/svg"
282 +
            class="h-6 w-6"
283 +
            width="44"
284 +
            height="44"
285 +
            viewBox="0 0 24 24"
286 +
            stroke-width="1.5"
287 +
            stroke="currentColor"
288 +
            fill="none"
289 +
            stroke-linecap="round"
290 +
            stroke-linejoin="round"
291 +
          >
292 +
            <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
293 +
            <path
294 +
              d="M7 3m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z"
295 +
            ></path>
296 +
            <path
297 +
              d="M4.012 7.26a2.005 2.005 0 0 0 -1.012 1.737v10c0 1.1 .9 2 2 2h10c.75 0 1.158 -.385 1.5 -1"
298 +
            ></path>
299 +
            <path d="M17 7h.01"></path>
300 +
            <path d="M7 13l3.644 -3.644a1.21 1.21 0 0 1 1.712 0l3.644 3.644"
301 +
            ></path>
302 +
            <path d="M15 12l1.644 -1.644a1.21 1.21 0 0 1 1.712 0l2.644 2.644"
303 +
            ></path>
304 +
          </svg>
305 +
          Photos
306 +
          <span class="sr-only">Photos</span>
307 +
        </a>
308 +
      </li>
297 309
298 -
			<li>
299 -
				<a
300 -
					class="flex items-center gap-4 p-2 sm:hover:text-link"
301 -
					href={SOCIAL_LINKS.coffee}
302 -
					target="_blank"
303 -
					rel="noopener noreferrer"
304 -
				>
305 -
					<svg
306 -
						class="h-6 w-6"
307 -
						stroke="currentColor"
308 -
						xmlns="http://www.w3.org/2000/svg"
309 -
						width="32"
310 -
						height="32"
311 -
						viewBox="0 0 24 24"
312 -
					>
313 -
						<path
314 -
							d="m20.216 6.415l-.132-.666c-.119-.598-.388-1.163-1.001-1.379c-.197-.069-.42-.098-.57-.241c-.152-.143-.196-.366-.231-.572c-.065-.378-.125-.756-.192-1.133c-.057-.325-.102-.69-.25-.987c-.195-.4-.597-.634-.996-.788a6 6 0 0 0-.626-.194c-1-.263-2.05-.36-3.077-.416a26 26 0 0 0-3.7.062c-.915.083-1.88.184-2.75.5c-.318.116-.646.256-.888.501c-.297.302-.393.77-.177 1.146c.154.267.415.456.692.58c.36.162.737.284 1.123.366c1.075.238 2.189.331 3.287.37q1.829.074 3.65-.118q.449-.05.896-.119c.352-.054.578-.513.474-.834c-.124-.383-.457-.531-.834-.473c-.466.074-.96.108-1.382.146q-1.767.12-3.536.006a22 22 0 0 1-1.157-.107c-.086-.01-.18-.025-.258-.036q-.364-.055-.724-.13c-.111-.027-.111-.185 0-.212h.005q.416-.09.838-.147h.002c.131-.009.263-.032.394-.048a25 25 0 0 1 3.426-.12q1.011.029 2.017.144l.228.031q.4.06.798.145c.392.085.895.113 1.07.542c.055.137.08.288.111.431l.319 1.484a.237.237 0 0 1-.199.284h-.003l-.112.015a37 37 0 0 1-4.743.295a37 37 0 0 1-4.699-.304c-.14-.017-.293-.042-.417-.06c-.326-.048-.649-.108-.973-.161c-.393-.065-.768-.032-1.123.161c-.29.16-.527.404-.675.701c-.154.316-.199.66-.267 1c-.069.34-.176.707-.135 1.056c.087.753.613 1.365 1.37 1.502a39.7 39.7 0 0 0 11.343.376a.483.483 0 0 1 .535.53l-.071.697l-1.018 9.907c-.041.41-.047.832-.125 1.237c-.122.637-.553 1.028-1.182 1.171q-.868.197-1.756.205c-.656.004-1.31-.025-1.966-.022c-.699.004-1.556-.06-2.095-.58c-.475-.458-.54-1.174-.605-1.793l-.731-7.013l-.322-3.094c-.037-.351-.286-.695-.678-.678c-.336.015-.718.3-.678.679l.228 2.185l.949 9.112c.147 1.344 1.174 2.068 2.446 2.272c.742.12 1.503.144 2.257.156c.966.016 1.942.053 2.892-.122c1.408-.258 2.465-1.198 2.616-2.657l1.024-9.995l.215-2.087a.48.48 0 0 1 .39-.426c.402-.078.787-.212 1.074-.518c.455-.488.546-1.124.385-1.766zm-1.478.772c-.145.137-.363.201-.578.233c-2.416.359-4.866.54-7.308.46c-1.748-.06-3.477-.254-5.207-.498c-.17-.024-.353-.055-.47-.18c-.22-.236-.111-.71-.054-.995c.052-.26.152-.609.463-.646c.484-.057 1.046.148 1.526.22q.865.132 1.737.212c2.48.226 5.002.19 7.472-.14q.675-.09 1.345-.21c.399-.072.84-.206 1.08.206c.166.281.188.657.162.974a.54.54 0 0 1-.169.364zm-6.159 3.9c-.862.37-1.84.788-3.109.788a6 6 0 0 1-1.569-.217l.877 9.004c.065.78.717 1.38 1.5 1.38c0 0 1.243.065 1.658.065c.447 0 1.786-.065 1.786-.065c.783 0 1.434-.6 1.499-1.38l.94-9.95a4 4 0 0 0-1.322-.238c-.826 0-1.491.284-2.26.613"
315 -
						></path></svg
316 -
					>
317 -
					Coffee
318 -
					<span class="sr-only">Coffee</span>
319 -
				</a>
320 -
			</li>
310 +
      <li>
311 +
        <a
312 +
          class="flex items-center gap-4 p-2 sm:hover:text-link"
313 +
          href={SOCIAL_LINKS.coffee}
314 +
          target="_blank"
315 +
          rel="noopener noreferrer"
316 +
        >
317 +
          <svg
318 +
            class="h-6 w-6"
319 +
            stroke="currentColor"
320 +
            xmlns="http://www.w3.org/2000/svg"
321 +
            width="32"
322 +
            height="32"
323 +
            viewBox="0 0 24 24"
324 +
          >
325 +
            <path
326 +
              d="m20.216 6.415l-.132-.666c-.119-.598-.388-1.163-1.001-1.379c-.197-.069-.42-.098-.57-.241c-.152-.143-.196-.366-.231-.572c-.065-.378-.125-.756-.192-1.133c-.057-.325-.102-.69-.25-.987c-.195-.4-.597-.634-.996-.788a6 6 0 0 0-.626-.194c-1-.263-2.05-.36-3.077-.416a26 26 0 0 0-3.7.062c-.915.083-1.88.184-2.75.5c-.318.116-.646.256-.888.501c-.297.302-.393.77-.177 1.146c.154.267.415.456.692.58c.36.162.737.284 1.123.366c1.075.238 2.189.331 3.287.37q1.829.074 3.65-.118q.449-.05.896-.119c.352-.054.578-.513.474-.834c-.124-.383-.457-.531-.834-.473c-.466.074-.96.108-1.382.146q-1.767.12-3.536.006a22 22 0 0 1-1.157-.107c-.086-.01-.18-.025-.258-.036q-.364-.055-.724-.13c-.111-.027-.111-.185 0-.212h.005q.416-.09.838-.147h.002c.131-.009.263-.032.394-.048a25 25 0 0 1 3.426-.12q1.011.029 2.017.144l.228.031q.4.06.798.145c.392.085.895.113 1.07.542c.055.137.08.288.111.431l.319 1.484a.237.237 0 0 1-.199.284h-.003l-.112.015a37 37 0 0 1-4.743.295a37 37 0 0 1-4.699-.304c-.14-.017-.293-.042-.417-.06c-.326-.048-.649-.108-.973-.161c-.393-.065-.768-.032-1.123.161c-.29.16-.527.404-.675.701c-.154.316-.199.66-.267 1c-.069.34-.176.707-.135 1.056c.087.753.613 1.365 1.37 1.502a39.7 39.7 0 0 0 11.343.376a.483.483 0 0 1 .535.53l-.071.697l-1.018 9.907c-.041.41-.047.832-.125 1.237c-.122.637-.553 1.028-1.182 1.171q-.868.197-1.756.205c-.656.004-1.31-.025-1.966-.022c-.699.004-1.556-.06-2.095-.58c-.475-.458-.54-1.174-.605-1.793l-.731-7.013l-.322-3.094c-.037-.351-.286-.695-.678-.678c-.336.015-.718.3-.678.679l.228 2.185l.949 9.112c.147 1.344 1.174 2.068 2.446 2.272c.742.12 1.503.144 2.257.156c.966.016 1.942.053 2.892-.122c1.408-.258 2.465-1.198 2.616-2.657l1.024-9.995l.215-2.087a.48.48 0 0 1 .39-.426c.402-.078.787-.212 1.074-.518c.455-.488.546-1.124.385-1.766zm-1.478.772c-.145.137-.363.201-.578.233c-2.416.359-4.866.54-7.308.46c-1.748-.06-3.477-.254-5.207-.498c-.17-.024-.353-.055-.47-.18c-.22-.236-.111-.71-.054-.995c.052-.26.152-.609.463-.646c.484-.057 1.046.148 1.526.22q.865.132 1.737.212c2.48.226 5.002.19 7.472-.14q.675-.09 1.345-.21c.399-.072.84-.206 1.08.206c.166.281.188.657.162.974a.54.54 0 0 1-.169.364zm-6.159 3.9c-.862.37-1.84.788-3.109.788a6 6 0 0 1-1.569-.217l.877 9.004c.065.78.717 1.38 1.5 1.38c0 0 1.243.065 1.658.065c.447 0 1.786-.065 1.786-.065c.783 0 1.434-.6 1.499-1.38l.94-9.95a4 4 0 0 0-1.322-.238c-.826 0-1.491.284-2.26.613"
327 +
            ></path></svg
328 +
          >
329 +
          Coffee
330 +
          <span class="sr-only">Coffee</span>
331 +
        </a>
332 +
      </li>
321 333
322 -
			<li>
334 +
      <!-- <li>
323 335
				<a
324 336
					class="flex items-center gap-4 p-2 sm:hover:text-link"
325 337
					href={SOCIAL_LINKS.ethereum}
343 355
					ENS
344 356
					<span class="sr-only">Ethereum</span>
345 357
				</a>
346 -
			</li>
347 -
		</ul>
348 -
	</div>
358 +
			</li> -->
359 +
    </ul>
360 +
  </div>
349 361
</PageLayout>