mirror of
https://github.com/zoriya/v10.git
synced 2026-08-11 16:40:27 +00:00
17 lines
362 B
Plaintext
17 lines
362 B
Plaintext
---
|
|
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>
|