Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/routes/press/PressCoveragePanel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
{/if}
<div class="card-footer">
<span class="card-date">{formatDate(item.date)}</span>
<span class="read-more">Read the release &rarr;</span>
<span class="read-more">Read the article &rarr;</span>
</div>
</LinkWithoutIcon>
{/each}
Expand All @@ -98,7 +98,7 @@
.tabs-container {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
gap: 0.25rem;
margin-bottom: 2rem;
background: var(--bg-card, var(--bg));
padding: 0.5rem;
Expand Down Expand Up @@ -133,12 +133,12 @@
.coverage-cards {
display: flex;
flex-direction: column;
gap: 1.5rem;
gap: 0.5rem;
}

/* Make the LinkWithoutIcon display as a flexible block card */
:global(.coverage-card) {
background: var(--bg-card, var(--bg));
background: color-mix(in srgb, var(--text) 3%, var(--bg));
border: 1px solid var(--border);
border-radius: 8px;
padding: 1.5rem;
Expand Down
2 changes: 1 addition & 1 deletion src/routes/press/meta.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Post } from '$lib/types'

export const meta: Post = {
title: 'PauseAI Press Materials & Media Coverage',
title: 'Press Coverage & Materials',
description: 'Media coverage of PauseAI protests and our logo/brand materials.',
date: '2024-05-15', // You can adjust this to whatever baseline date you want
slug: 'press',
Expand Down
Loading