Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 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
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
1 change: 1 addition & 0 deletions apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"next": "~16.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remark-gfm": "^4.0.1",
"resend": "^6.10.0",
"shiki": "*",
"tailwind-merge": "^2.5.0"
Expand Down
5 changes: 5 additions & 0 deletions apps/website/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { EB_Garamond, Inter, JetBrains_Mono } from 'next/font/google';
import './global.css';
import { Nav } from '../components/shared/Nav';
import { Footer } from '../components/shared/Footer';
import { AnnouncementToast } from '../components/shared/AnnouncementToast';

const garamond = EB_Garamond({
subsets: ['latin'],
Expand All @@ -24,6 +25,9 @@ const mono = JetBrains_Mono({
export const metadata: Metadata = {
title: 'Angular Agent Framework — Signal-Native Streaming for Angular + LangGraph',
description: 'The enterprise Angular agent framework for LangChain. Signal-native streaming, thread persistence, and production patterns for Angular 20+.',
icons: {
icon: 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90">🛩️</text></svg>',
},
openGraph: {
title: 'Angular Agent Framework',
description: 'Signal-native streaming for LangGraph — production patterns your Angular team can own.',
Expand All @@ -44,6 +48,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<Nav />
<main>{children}</main>
<Footer />
<AnnouncementToast />
</body>
</html>
);
Expand Down
2 changes: 2 additions & 0 deletions apps/website/src/components/docs/MdxRenderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { DocsBreadcrumb } from './DocsBreadcrumb';
import { DocsPrevNext } from './DocsPrevNext';
import rehypePrettyCode from 'rehype-pretty-code';
import rehypeSlug from 'rehype-slug';
import remarkGfm from 'remark-gfm';

const mdxComponents = {
Callout,
Expand Down Expand Up @@ -55,6 +56,7 @@ export function MdxRendererNew({ source, section, slug, title }: NewProps) {
components={mdxComponents}
options={{
mdxOptions: {
remarkPlugins: [remarkGfm],
rehypePlugins: [rehypeSlug, [rehypePrettyCode, rehypeOptions] as any],
},
}}
Expand Down
6 changes: 4 additions & 2 deletions apps/website/src/components/landing/FullStackSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ const HORIZON_ITEMS = ['Voice UI primitives', 'Video stream rendering', 'Collabo
function Connector({ layer }: { layer: typeof LAYERS[0] }) {
if (!layer.connFill) return null;
return (
<div style={{ display: 'flex', alignItems: 'center', justifyContent: 'center', position: 'relative', height: 52 }}>
<svg width="4" height="52" viewBox="0 0 4 52" overflow="visible">
<div style={{ display: 'flex', alignItems: 'center', justifyContent: 'center', position: 'relative', height: 52, zIndex: 0 }}>
<svg width="4" height="52" viewBox="0 0 4 52" overflow="hidden">
<line x1="2" y1="0" x2="2" y2="52" stroke={layer.connColor} strokeWidth="2" strokeDasharray="3 3" />
<circle r="3.5" fill={layer.connFill}>
<animateMotion dur={`${layer.connDur}s`} repeatCount="indefinite" begin="0s">
Expand Down Expand Up @@ -171,6 +171,8 @@ export function FullStackSection() {
padding: '20px 20px 18px',
background: layer.bg,
border: `2px solid ${layer.border}`,
position: 'relative',
zIndex: 1,
}}>
{/* Tag — inline, not absolute. Fixes Gen UI overlap bug. */}
<span style={{
Expand Down
2 changes: 1 addition & 1 deletion apps/website/src/components/pricing/PricingGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const PLANS = [
name: 'Developer Seat',
price: '$500',
period: '/seat/year',
features: ['Commercial use', '12-month release lock', 'Email support', 'All features'],
features: ['Commercial use', '12-month license', 'Email support', 'All features'],
highlight: false,
cta: 'Buy License',
ctaHref: '#lead-form',
Expand Down
161 changes: 161 additions & 0 deletions apps/website/src/components/shared/AnnouncementToast.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
'use client';
import { useState, useEffect } from 'react';
import { motion, AnimatePresence } from 'framer-motion';
import { tokens } from '@cacheplane/design-tokens';

/**
* Bump this date to re-show the toast for all users.
* Format: YYYY-MM-DD
*/
const ANNOUNCEMENT_DATE = '2026-04-07';
const STORAGE_KEY = `dismissed-announcement-${ANNOUNCEMENT_DATE}`;
const DELAY_MS = 30_000;

export function AnnouncementToast() {
const [visible, setVisible] = useState(false);

useEffect(() => {
// Check if already dismissed for this announcement date
try {
if (localStorage.getItem(STORAGE_KEY) === 'true') return;
} catch {
// localStorage unavailable (SSR, private browsing)
return;
}

const timer = setTimeout(() => setVisible(true), DELAY_MS);
return () => clearTimeout(timer);
}, []);

const dismiss = () => {
setVisible(false);
try {
localStorage.setItem(STORAGE_KEY, 'true');
} catch {
// ignore
}
};

return (
<AnimatePresence>
{visible && (
<motion.div
initial={{ opacity: 0, y: 60, scale: 0.95 }}
animate={{ opacity: 1, y: 0, scale: 1 }}
exit={{ opacity: 0, y: 40, scale: 0.95 }}
transition={{ type: 'spring', damping: 25, stiffness: 300 }}
style={{
position: 'fixed',
bottom: 24,
right: 24,
zIndex: 100,
maxWidth: 360,
width: 'calc(100vw - 48px)',
background: tokens.glass.bg,
backdropFilter: `blur(${tokens.glass.blur})`,
WebkitBackdropFilter: `blur(${tokens.glass.blur})`,
border: `1px solid ${tokens.glass.border}`,
boxShadow: '0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06)',
borderRadius: 16,
padding: '20px 24px',
}}
role="alert"
aria-live="polite"
>
{/* Dismiss button */}
<button
onClick={dismiss}
aria-label="Dismiss"
style={{
position: 'absolute',
top: 10,
right: 12,
background: 'none',
border: 'none',
cursor: 'pointer',
color: tokens.colors.textMuted,
fontSize: 18,
lineHeight: 1,
padding: 4,
}}
>
×
</button>

{/* Content */}
<p style={{
fontFamily: 'var(--font-mono,"JetBrains Mono",monospace)',
fontSize: '0.62rem',
textTransform: 'uppercase',
letterSpacing: '0.1em',
fontWeight: 700,
color: tokens.colors.accent,
marginBottom: 8,
}}>
Free Guide
</p>
<p style={{
fontFamily: 'var(--font-garamond,"EB Garamond",Georgia,serif)',
fontSize: '1.05rem',
fontWeight: 700,
color: tokens.colors.textPrimary,
lineHeight: 1.3,
marginBottom: 6,
}}>
From Prototype to Production
</p>
<p style={{
fontSize: '0.82rem',
color: tokens.colors.textSecondary,
lineHeight: 1.5,
marginBottom: 16,
}}>
Six production-readiness dimensions for Angular agents. Get the guide.
</p>
<div style={{ display: 'flex', gap: 10, alignItems: 'center' }}>
<a
href="/whitepaper.pdf"
download="angular-agent-readiness-guide.pdf"
onClick={dismiss}
style={{
display: 'inline-flex',
alignItems: 'center',
gap: 6,
background: tokens.colors.accent,
color: '#fff',
padding: '8px 18px',
borderRadius: 8,
fontFamily: 'var(--font-mono,"JetBrains Mono",monospace)',
fontSize: '0.7rem',
fontWeight: 700,
textTransform: 'uppercase',
letterSpacing: '0.06em',
textDecoration: 'none',
transition: 'box-shadow .2s',
}}
onMouseEnter={e => (e.currentTarget.style.boxShadow = '0 4px 16px rgba(0,64,144,.3)')}
onMouseLeave={e => (e.currentTarget.style.boxShadow = 'none')}
>
↓ Download
</a>
<button
onClick={dismiss}
style={{
background: 'none',
border: 'none',
cursor: 'pointer',
fontFamily: 'var(--font-mono,"JetBrains Mono",monospace)',
fontSize: '0.68rem',
color: tokens.colors.textMuted,
textDecoration: 'underline',
padding: '8px 4px',
}}
>
Not now
</button>
</div>
</motion.div>
)}
</AnimatePresence>
);
}
2 changes: 1 addition & 1 deletion apps/website/src/components/shared/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function Footer() {
<div className="grid grid-cols-1 md:grid-cols-4 gap-10 md:gap-8">
{/* Brand */}
<div className="md:col-span-2">
<p className="font-garamond text-xl font-bold mb-2" style={{ color: tokens.colors.textPrimary }}>Angular Agent Framework</p>
<p className="font-garamond text-xl font-bold mb-2" style={{ color: tokens.colors.textPrimary }}>🛩️ Angular Agent Framework</p>
<p className="text-sm mb-4" style={{ color: tokens.colors.textMuted, maxWidth: '36ch', lineHeight: 1.6 }}>
The enterprise Angular agent framework for LangChain. Signal-native streaming built for production Angular 20+.
</p>
Expand Down
2 changes: 1 addition & 1 deletion apps/website/src/components/shared/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function Nav() {
{/* Top bar */}
<div className="flex items-center justify-between px-6 py-4 md:px-8 md:py-5">
<Link href="/" className="font-garamond text-xl font-bold" style={{ color: tokens.colors.textPrimary }}>
Angular Agent Framework
🛩️ Angular Agent Framework
</Link>

{/* Desktop links */}
Expand Down
Loading