mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
cf9ccd0076
* Scaffold Geistdocs instance * Update biome.json * Replace content * Re-path docs * Update docs package name * Misc fixes * Update geistdocs.tsx * Move content to correct folder * Start migrating custom components * Finish migrating custom components * Migrate existing redirects * Remove #next suffixes from code blocks * Migrate homepage and flags * Remove duplicate lockfiles * Start fixing homepage * Replace Geist components * Fix colors * Improve layout * Fix code blocks * Fix hero * Fix illustrations * Fix redirect * Fix nav links * Patch in FrameworkSwitcher * Bump Next.js in docs * Delete turbo.json * Misc fixes * More logo fixes
31 lines
736 B
TypeScript
31 lines
736 B
TypeScript
import { SiGithub } from "@icons-pack/react-simple-icons";
|
|
import { github } from "@/geistdocs";
|
|
|
|
type EditSourceProps = {
|
|
path: string | undefined;
|
|
};
|
|
|
|
export const EditSource = ({ path }: EditSourceProps) => {
|
|
let url: string | undefined;
|
|
|
|
if (github.owner && github.repo && path) {
|
|
url = `https://github.com/${github.owner}/${github.repo}/edit/main/content/docs/${path}`;
|
|
}
|
|
|
|
if (!url) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<a
|
|
className="flex items-center gap-1.5 text-muted-foreground text-sm transition-colors hover:text-foreground"
|
|
href={url}
|
|
rel="noopener noreferrer"
|
|
target="_blank"
|
|
>
|
|
<SiGithub className="size-3.5" />
|
|
<span>Edit this page on GitHub</span>
|
|
</a>
|
|
);
|
|
};
|