mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
4695d618dd
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai> Co-authored-by: Tyler Slaton <tyler@copilotkit.ai> Co-authored-by: Max Korp <maxkorp@8bytealchemy.com>
30 lines
769 B
TypeScript
30 lines
769 B
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { V150EarlyAccessModal } from '@/components/layout/v150-early-access-modal';
|
|
|
|
export function SignUpSection() {
|
|
const [isModalOpen, setIsModalOpen] = useState(false);
|
|
|
|
return (
|
|
<>
|
|
<p className="text-muted-foreground">
|
|
Want to be the first to know about new features?{' '}
|
|
<button
|
|
onClick={() => setIsModalOpen(true)}
|
|
className="text-primary hover:underline font-medium cursor-pointer bg-transparent border-none p-0"
|
|
>
|
|
Sign up for early access
|
|
</button>
|
|
{' '}to upcoming releases.
|
|
</p>
|
|
|
|
<V150EarlyAccessModal
|
|
isOpen={isModalOpen}
|
|
onClose={() => setIsModalOpen(false)}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|