mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
c0991b4ff7
* Initial migration
* Remove ExperimentalPackageCallout
* Remove Callout imports
* Add missing dep
* Update postgres-world.mdx
* Add missing deps, remove unused files
* Restore homepage css
* Update logo, fix homepage
* Update run-anywhere.tsx
* Remove duplicate h1 tags
* Fix package install commands
* Update global.css
* Update code-block.tsx
* Fix framework descriptions
* Remove unused files
* Fix steps
* Update sidebar.tsx
* Remove excess horizontal rules
* Remove unused components
* Cleanup home code-block component
* Update route.ts
* Add missing feed dep
* Rename middleware to proxy
* Update next config
* Update route.tsx
* Move generateDefinition call into tsx
* Update page.tsx
* Update sidebar.tsx
* Update layout.tsx
* Remove unused files
* Fix nav
* Update route.ts
* Remove deprecated lint:links
* Load fonts locally
* Update layout.tsx
* Update route.ts
* Update Geistdocs
* Update hero.tsx
* Update search.tsx
* Update search.tsx
* docs: update url structure in chat tools example
* chore: replace gpt-5 reasoning with gpt-5.1
* docs: update instructions for llm to be more workflow-centric
* Revert "docs: update instructions for llm to be more workflow-centric"
This reverts commit 3852820988.
* Update pnpm-lock.yaml
* Update home-layout.tsx
* Update layout.tsx
* Update pnpm-workspace.yaml
---------
Co-authored-by: Adrian Lam <me@adriandlam.com>
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import { ExternalLinkIcon } from 'lucide-react';
|
|
import {
|
|
OpenIn,
|
|
OpenInChatGPT,
|
|
OpenInClaude,
|
|
OpenInContent,
|
|
OpenInCursor,
|
|
OpenInScira,
|
|
OpenInSeparator,
|
|
OpenInT3,
|
|
OpenInTrigger,
|
|
OpenInv0,
|
|
} from '@/components/ai-elements/open-in-chat';
|
|
|
|
type OpenInChatProps = {
|
|
href: string;
|
|
};
|
|
|
|
export const OpenInChat = ({ href }: OpenInChatProps) => {
|
|
const protocol = process.env.NODE_ENV === 'production' ? 'https' : 'http';
|
|
const url = new URL(
|
|
href,
|
|
`${protocol}://${process.env.NEXT_PUBLIC_VERCEL_PROJECT_PRODUCTION_URL}`
|
|
).toString();
|
|
const query = `Read this page, I want to ask questions about it. ${url}`;
|
|
|
|
return (
|
|
<OpenIn query={query}>
|
|
<OpenInTrigger asChild>
|
|
<button
|
|
className="flex items-center gap-1.5 text-muted-foreground text-sm transition-colors hover:text-foreground"
|
|
type="button"
|
|
>
|
|
<ExternalLinkIcon className="size-4" />
|
|
Open in chat
|
|
</button>
|
|
</OpenInTrigger>
|
|
<OpenInContent align="start" side="top">
|
|
<OpenInv0 />
|
|
<OpenInSeparator />
|
|
<OpenInChatGPT />
|
|
<OpenInClaude />
|
|
<OpenInT3 />
|
|
<OpenInScira />
|
|
<OpenInCursor />
|
|
</OpenInContent>
|
|
</OpenIn>
|
|
);
|
|
};
|