23 lines
779 B
Plaintext
23 lines
779 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`UserPill > renders auth links when there is no session 1`] = `
|
|
<div>
|
|
<div
|
|
class="flex items-center gap-2"
|
|
>
|
|
<a
|
|
class="inline-flex items-center gap-2 rounded-full bg-iron-gray border border-charcoal-outline px-4 py-1.5 text-xs font-medium text-gray-300 hover:text-white hover:border-gray-500 transition-all"
|
|
href="/auth/login"
|
|
>
|
|
Sign In
|
|
</a>
|
|
<a
|
|
class="inline-flex items-center gap-2 rounded-full bg-primary-blue px-4 py-1.5 text-xs font-semibold text-white shadow-[0_0_12px_rgba(25,140,255,0.5)] hover:bg-primary-blue/90 hover:shadow-[0_0_18px_rgba(25,140,255,0.8)] transition-all"
|
|
href="/auth/signup"
|
|
>
|
|
Get Started
|
|
</a>
|
|
</div>
|
|
</div>
|
|
`;
|