Monorepo for Aesthetic.Computer
aesthetic.computer
1// Logo, 23.09.05.22.31
2// Retrieve / proxy a random logo url from the aesthetic.computer logo store.
3
4const slugs = [
5 "painting-2023.8.01.17.07.png",
6 "painting-2023.8.21.10.25.png",
7 "painting-2023.8.21.10.45.png",
8 "painting-2023.8.01.14.52.png",
9 "painting-2023.8.21.10.19.png",
10 "painting-2023.8.01.14.04.png",
11 "painting-2023.8.21.10.50.png",
12 "painting-2023.8.21.10.31.png",
13 "painting-2023.8.01.17.35.png",
14 "painting-2023.8.01.14.33.png",
15 "painting-2023.7.31.15.33.png",
16 "painting-2023.7.29.20.39.png",
17];
18
19export function logoUrl() {
20 const i = Math.floor(Math.random() * slugs.length);
21 return `https://pals-aesthetic-computer.sfo3.cdn.digitaloceanspaces.com/${slugs[i]}`;
22}