chore: update /now aa16615e
Steve · 2026-05-04 22:16 1 file(s) · +1 −21
src/pages/now/index.astro +1 −21
3 3
4 4
import PageLayout from "@/layouts/Base.astro";
5 5
import NowUpdates from "@/components/now/NowUpdates.astro";
6 -
import { getSocial } from "@/data/constants";
7 -
8 -
const atproto = getSocial("atproto")!;
9 6
10 7
const meta = {
11 8
	title: "Now",
31 28
    <div class="flex gap-2 items-center">
32 29
    <a
33 30
				class="inline-block p-2 sm:hover:text-link"
34 -
				href="/now/rss.xml"
31 +
        href="https://posts.stevedylan.dev/feed.xml"
35 32
				target="_blank"
36 33
				rel="noopener noreferrer"
37 34
			>
49 46
				</svg>
50 47
				<span class="sr-only">RSS</span>
51 48
  			</a>
52 -
        <a
53 -
          class="flex items-center gap-4 p-2 sm:hover:text-link"
54 -
          href={atproto.href}
55 -
          target="_blank"
56 -
          rel="noopener noreferrer"
57 -
        >
58 -
          <svg
59 -
  				class="h-6 w-6" stroke-width="1.5" stroke="currentColor"
60 -
  				 viewBox="0 0 24 24"  xmlns="http://www.w3.org/2000/svg">
61 -
            <g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
62 -
              <circle cx="12" cy="12" r="4"/>
63 -
              <path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8"/>
64 -
            </g>
65 -
            </svg>
66 -
          </svg>
67 -
          <span class="sr-only">ATProto</span>
68 -
        </a>
69 49
    </div>
70 50
  </div>
71 51
  <NowUpdates />