pull/716/head
Travis Fischer 2025-06-30 05:14:44 -05:00
rodzic dd0e462490
commit af4ef160a3
6 zmienionych plików z 17 dodań i 13 usunięć

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 31 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 15 KiB

Wyświetl plik

@ -151,10 +151,10 @@ export function LoginForm() {
)} )}
/> />
<div className='after:border-border relative text-center text-sm after:absolute after:inset-0 after:top-1/2 after:z-0 after:flex after:items-center after:border-t'> <div className='flex items-center gap-2 text-center text-sm'>
<span className='bg-background text-muted-foreground relative z-10 px-2'> <div className='border-border border-t inset-0 flex-1' />
Or continue with <div className='text-muted-foreground'>Or continue with</div>
</span> <div className='border-border border-t inset-0 flex-1' />
</div> </div>
<Button <Button

Wyświetl plik

@ -45,8 +45,8 @@ export default async function TheBestDamnLandingPageEver() {
</h1> </h1>
<h5 className='text-center text-lg max-w-2xl'> <h5 className='text-center text-lg max-w-2xl'>
Agentic is a curated marketplace of production-grade LLM tools. All Agentic is a highly curated marketplace of production-grade LLM tools
tools are exposed as both MCP servers as well as simple HTTP APIs. that work with every major LLM SDK and MCP client.
</h5> </h5>
<DemandSideCTA /> <DemandSideCTA />

Wyświetl plik

@ -9,6 +9,7 @@ import { MCPGatewayFeatures } from '@/components/mcp-gateway-features'
import { PageContainer } from '@/components/page-container' import { PageContainer } from '@/components/page-container'
import { SupplySideCTA } from '@/components/supply-side-cta' import { SupplySideCTA } from '@/components/supply-side-cta'
import { githubUrl, twitterUrl } from '@/lib/config' import { githubUrl, twitterUrl } from '@/lib/config'
import mcpGatewayDemo from '@/public/agentic-mcp-gateway-mvp-diagram-light.png'
export default function PublishingMCPsPage() { export default function PublishingMCPsPage() {
return ( return (
@ -37,10 +38,12 @@ export default function PublishingMCPsPage() {
<div className='w-full max-w-3xl flex flex-col items-center border rounded-lg shadow-sm overflow-hidden p-4 bg-white'> <div className='w-full max-w-3xl flex flex-col items-center border rounded-lg shadow-sm overflow-hidden p-4 bg-white'>
<Zoom> <Zoom>
<Image <Image
src='/agentic-mcp-gateway-mvp-diagram-light.png' src={mcpGatewayDemo.src}
alt='MCP Gateway Demo' alt='MCP Gateway Demo'
width={2048} width={mcpGatewayDemo.width}
height={1094} height={mcpGatewayDemo.height}
blurDataURL={mcpGatewayDemo.blurDataURL}
placeholder='blur'
className='w-full rounded-lg overflow-hidden' className='w-full rounded-lg overflow-hidden'
/> />
</Zoom> </Zoom>

Wyświetl plik

@ -195,10 +195,10 @@ export function SignupForm() {
)} )}
/> />
<div className='after:border-border relative text-center text-sm after:absolute after:inset-0 after:top-1/2 after:z-0 after:flex after:items-center after:border-t'> <div className='flex items-center gap-2 text-center text-sm'>
<span className='bg-background text-muted-foreground relative z-10 px-2'> <div className='border-border border-t inset-0 flex-1' />
Or continue with <div className='text-muted-foreground'>Or continue with</div>
</span> <div className='border-border border-t inset-0 flex-1' />
</div> </div>
<Button <Button

Wyświetl plik

@ -36,6 +36,7 @@
- fix weird git state and github actions marked as failing - fix weird git state and github actions marked as failing
- fix marketing dark background - fix marketing dark background
- page metadata - page metadata
- add scroll appearance motion to hero animation
## TODO: Post-MVP ## TODO: Post-MVP