mirror of
https://github.com/furyhawk/ai_agent.git
synced 2026-07-21 10:15:44 +00:00
- Implemented `conversation-store` for managing conversations and messages. - Created `file-preview-store` to handle file preview state. - Added `sidebar-store` for sidebar visibility management. - Developed `theme-store` for theme persistence and management. - Introduced `kb-selection-store` for managing active knowledge base selections with persistence. chore: define API and chat types - Added types for API responses, authentication, chat messages, conversations, and projects. - Defined interfaces for various entities including users, sessions, and message ratings. build: configure TypeScript and testing setup - Set up `tsconfig.json` for TypeScript configuration. - Created `vitest.config.ts` for testing configuration with Vitest. - Added `vitest.setup.ts` for global test setup including mocks for Next.js router and media queries. - Configured Vercel deployment settings in `vercel.json`.
18 lines
1.4 KiB
HTML
18 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Payment Failed</title></head>
|
|
<body style="margin:0;padding:0;background:#f4f4f5;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif">
|
|
<table width="100%" cellpadding="0" cellspacing="0"><tr><td align="center" style="padding:40px 16px">
|
|
<table width="560" cellpadding="0" cellspacing="0" style="background:#fff;border-radius:8px;overflow:hidden">
|
|
<tr><td style="background:#dc2626;padding:32px;text-align:center"><span style="color:#fff;font-size:22px;font-weight:700">[[app_name]]</span></td></tr>
|
|
<tr><td style="padding:40px 40px 32px">
|
|
<h1 style="margin:0 0 16px;font-size:24px;color:#dc2626">Payment failed</h1>
|
|
<p style="margin:0 0 8px;color:#475569;line-height:1.6">Hi [[name]],</p>
|
|
<p style="margin:0 0 24px;color:#475569;line-height:1.6">We were unable to process your payment of <strong>[[amount]]</strong>. Please update your payment method to keep your subscription active.</p>
|
|
<a href="[[update_url]]" style="display:inline-block;background:#dc2626;color:#fff;text-decoration:none;padding:12px 28px;border-radius:6px;font-weight:600;font-size:15px">Update Payment Method</a>
|
|
</td></tr>
|
|
<tr><td style="padding:24px 40px;border-top:1px solid #e2e8f0;color:#94a3b8;font-size:13px">[[app_name]] — billing alert</td></tr>
|
|
</table>
|
|
</td></tr></table>
|
|
</body></html>
|