chore(site): rename website to site

This commit is contained in:
Darius Cepulis
2025-10-28 13:44:03 -05:00
parent 5dbaddc513
commit d1583dd47d
168 changed files with 22 additions and 22 deletions
@@ -0,0 +1,16 @@
---
import { GITHUB_REPO_URL } from '@/consts';
type Props = {
filePath: string;
};
const { filePath } = Astro.props;
const editUrl = `${GITHUB_REPO_URL}edit/main/${filePath}`;
---
<div class="w-full max-w-3xl mx-auto">
<a href={editUrl} target="_blank" rel="noopener noreferrer" class="underline intent:no-underline text-sm">
Edit page
</a>
</div>