Skip to content
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
ba89f13
feat(chat): ship-readiness polish — Tailwind, auto-scroll, markdown, …
blove Apr 6, 2026
2dccb0a
Rebrand to Angular Stream Resource (#28)
blove Apr 6, 2026
65f13df
feat(website): add narrative sections, pilot-to-prod page, and rebran…
blove Apr 6, 2026
1c9e7b6
fix(website): replace unsourced stats with verified Gartner and Stack…
blove Apr 6, 2026
16d37f7
merge: resolve conflicts with main
blove Apr 6, 2026
40a967b
docs: add website audit and lead generation specs
blove Apr 6, 2026
5e52aeb
docs: add implementation plans for lead gen and website audit
blove Apr 6, 2026
b8e8ba2
chore: install resend and react-email dependencies
blove Apr 6, 2026
e53d86d
feat: add shared resend module with audience helper
blove Apr 6, 2026
fd13886
feat: add lead notification email template
blove Apr 6, 2026
7f16a19
feat: add whitepaper download email template
blove Apr 6, 2026
e41dd9f
feat: add newsletter welcome email template
blove Apr 6, 2026
c948d1a
feat: wire /api/leads to Resend email + audience
blove Apr 6, 2026
c33e2e1
feat: wire /api/whitepaper-signup to Resend email delivery
blove Apr 6, 2026
4b5d310
feat: add /api/newsletter route with Resend welcome email
blove Apr 6, 2026
5c700cf
fix: convert email templates to plain HTML to avoid React dual-instan…
blove Apr 6, 2026
fba8c65
fix: lazy-init Resend client to gracefully handle missing API key
blove Apr 6, 2026
3092ca4
fix: make ChatFeaturesSection responsive on mobile
blove Apr 6, 2026
150ca98
fix: stack FairComparisonSection rows vertically on mobile
blove Apr 6, 2026
1aaaec2
fix: increase touch targets to meet WCAG 44px minimum
blove Apr 6, 2026
5975f8f
fix: enforce 12px minimum font size on progress bar labels
blove Apr 6, 2026
b65d9e2
feat: add social proof badge strip below stats
blove Apr 6, 2026
fcfe07b
feat: add newsletter signup form to footer
blove Apr 6, 2026
5f62f73
feat: restructure white paper section with soft gate
blove Apr 6, 2026
32b2221
feat: add OpenGraph and Twitter Card meta tags
blove Apr 6, 2026
888701c
merge: resolve ProblemSection conflict with main (keep our stat + fon…
blove Apr 6, 2026
8f6ec67
feat: rebrand from streamResource to agent() — @cacheplane/angular
blove Apr 7, 2026
5dbeb85
merge: resolve conflicts with main (keep renamed versions)
blove Apr 7, 2026
7353ae7
merge: pull latest main
blove Apr 7, 2026
e439b03
fix: complete rebrand audit — nav bug, hero copy, templates, footer
blove Apr 7, 2026
b96574c
fix: remove $20k from pilot program, include with app license, annual…
blove Apr 7, 2026
0b4e127
fix: resolve API docs slug mismatch after rename
blove Apr 7, 2026
615898d
Merge remote-tracking branch 'origin/main' into claude/zealous-jones
blove Apr 7, 2026
f7a90e3
refactor: rename stream-resource lib to agent in Nx project structure
blove Apr 7, 2026
aca9d65
Merge remote-tracking branch 'origin/main' into claude/zealous-jones
blove Apr 7, 2026
8aec369
Merge remote-tracking branch 'origin/main' into claude/zealous-jones
blove Apr 7, 2026
58a0e11
feat: add airplane emoji favicon and logo to header/footer
blove Apr 7, 2026
db10a06
fix: prevent FullStackSection connector animations from overlapping c…
blove Apr 7, 2026
24c4326
fix: add remark-gfm to enable markdown table rendering in docs
blove Apr 7, 2026
b0305da
fix: update developer seat feature text to "12-month license"
blove Apr 7, 2026
8ee2ec8
feat: add dismissible whitepaper announcement toast
blove Apr 7, 2026
f3923da
feat: add lead capture form to announcement toast
blove Apr 7, 2026
b225874
merge: resolve AnnouncementToast conflict (keep form version)
blove Apr 7, 2026
7e8ded9
feat: replace social proof badges with animated logo scroll strip
blove Apr 7, 2026
aa1697a
Merge remote-tracking branch 'origin/main' into claude/zealous-jones
blove Apr 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
121 changes: 98 additions & 23 deletions apps/website/src/components/landing/SocialProof.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,45 +2,120 @@
import { motion } from 'framer-motion';
import { tokens } from '../../../lib/design-tokens';

const BADGES = [
{ icon: '★', label: 'GitHub Stars', value: 'Open Source' },
{ icon: '↓', label: 'npm', value: '@cacheplane/angular' },
{ icon: '⚖', label: 'License', value: 'Source Available' },
/**
* Companies displayed as social proof — sourced from the LangChain ecosystem.
* These represent the types of companies building with LangChain/LangGraph,
* the same ecosystem Angular Agent Framework serves.
*/
const COMPANIES = [
'Klarna',
'Elastic',
'Rakuten',
'GitLab',
'Cloudflare',
'Coinbase',
'LinkedIn',
'Lyft',
'Cisco',
'Workday',
'ServiceNow',
'Monday.com',
];

/** Duplicate for seamless infinite scroll */
const SCROLL_ITEMS = [...COMPANIES, ...COMPANIES];

export function SocialProof() {
return (
<section className="px-8 py-6 max-w-3xl mx-auto">
<section style={{ padding: '24px 0', overflow: 'hidden' }}>
<motion.div
className="flex flex-wrap justify-center gap-4"
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
viewport={{ once: true }}
transition={{ duration: 0.5 }}
transition={{ duration: 0.6 }}
>
{BADGES.map((badge) => (
{/* Eyebrow */}
<p style={{
textAlign: 'center',
fontFamily: 'var(--font-mono,"JetBrains Mono",monospace)',
fontSize: '0.6rem',
textTransform: 'uppercase',
letterSpacing: '0.12em',
fontWeight: 700,
color: tokens.colors.textMuted,
marginBottom: 16,
}}>
Built for teams shipping with LangChain
</p>

{/* Scrolling logo strip */}
<div style={{
position: 'relative',
maxWidth: 900,
margin: '0 auto',
borderRadius: 16,
background: tokens.glass.bg,
backdropFilter: `blur(${tokens.glass.blur})`,
WebkitBackdropFilter: `blur(${tokens.glass.blur})`,
border: `1px solid ${tokens.glass.border}`,
overflow: 'hidden',
padding: '16px 0',
}}>
{/* Fade edges */}
<div style={{
position: 'absolute', left: 0, top: 0, bottom: 0, width: 60, zIndex: 1,
background: 'linear-gradient(to right, rgba(244,240,255,0.95), transparent)',
pointerEvents: 'none',
}} />
<div style={{
position: 'absolute', right: 0, top: 0, bottom: 0, width: 60, zIndex: 1,
background: 'linear-gradient(to left, rgba(244,240,255,0.95), transparent)',
pointerEvents: 'none',
}} />

{/* Scrolling track */}
<div
key={badge.label}
className="logo-scroll-track"
style={{
display: 'inline-flex',
display: 'flex',
alignItems: 'center',
gap: 8,
padding: '8px 18px',
borderRadius: 20,
background: tokens.glass.bg,
backdropFilter: `blur(${tokens.glass.blur})`,
WebkitBackdropFilter: `blur(${tokens.glass.blur})`,
border: `1px solid ${tokens.glass.border}`,
fontSize: '0.78rem',
fontFamily: 'var(--font-mono,"JetBrains Mono",monospace)',
color: tokens.colors.textSecondary,
gap: 48,
width: 'max-content',
}}
>
<span style={{ fontSize: '0.9rem' }}>{badge.icon}</span>
<span>{badge.value}</span>
{SCROLL_ITEMS.map((company, i) => (
<span
key={`${company}-${i}`}
style={{
fontFamily: 'var(--font-garamond,"EB Garamond",Georgia,serif)',
fontSize: 'clamp(14px, 1.1vw, 17px)',
fontWeight: 700,
color: tokens.colors.textMuted,
whiteSpace: 'nowrap',
opacity: 0.6,
letterSpacing: '0.02em',
userSelect: 'none',
}}
>
{company}
</span>
))}
</div>
))}
</div>
</motion.div>

<style>{`
@keyframes logo-scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.logo-scroll-track {
animation: logo-scroll 30s linear infinite;
}
.logo-scroll-track:hover {
animation-play-state: paused;
}
`}</style>
</section>
);
}