mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
* feat(docs): add API reference with OpenAPI spec and auto-generated endpoint pages * multiline curl * random improvements * cleanup * update docs copy * fix build * cast * fix builg --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Lakee Sivaraya <71339072+lakeesiv@users.noreply.github.com> Co-authored-by: Vikhyath Mondreti <vikhyath@simstudio.ai> Co-authored-by: Vikhyath Mondreti <vikhyathvikku@gmail.com>
40 lines
1.8 KiB
TypeScript
40 lines
1.8 KiB
TypeScript
'use client'
|
|
|
|
import { ArrowRight, ChevronRight } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
|
|
export function TOCFooter() {
|
|
return (
|
|
<div className='sticky bottom-0 mt-6'>
|
|
<div className='flex flex-col gap-2 rounded-lg border border-border bg-secondary p-6 text-sm'>
|
|
<div className='text-balance font-semibold text-base leading-tight'>
|
|
Start building today
|
|
</div>
|
|
<div className='text-muted-foreground'>Trusted by over 70,000 builders.</div>
|
|
<div className='text-muted-foreground'>
|
|
Build Agentic workflows visually on a drag-and-drop canvas or with natural language.
|
|
</div>
|
|
<Link
|
|
href='https://sim.ai/signup'
|
|
target='_blank'
|
|
rel='noopener noreferrer'
|
|
className='group mt-2 inline-flex h-8 w-fit items-center justify-center gap-1 whitespace-nowrap rounded-[10px] border border-[#2AAD6C] bg-gradient-to-b from-[#3ED990] to-[#2AAD6C] px-3 pr-[10px] pl-[12px] font-medium text-sm text-white shadow-[inset_0_2px_4px_0_#5EE8A8] outline-none transition-all hover:shadow-lg focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50'
|
|
aria-label='Get started with Sim - Sign up for free'
|
|
>
|
|
<span>Get started</span>
|
|
<span className='relative inline-flex h-4 w-4 transition-transform duration-200 group-hover:translate-x-0.5'>
|
|
<ChevronRight
|
|
className='absolute inset-0 h-4 w-4 transition-opacity duration-200 group-hover:opacity-0'
|
|
aria-hidden='true'
|
|
/>
|
|
<ArrowRight
|
|
className='absolute inset-0 h-4 w-4 opacity-0 transition-opacity duration-200 group-hover:opacity-100'
|
|
aria-hidden='true'
|
|
/>
|
|
</span>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|