File size: 1,944 Bytes
964bf9d 3dac255 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | import { Document, TeamMember } from "./types";
export const INITIAL_DOCUMENTS: Document[] = [
{
id: "sample-welcome",
title: "Welcome to Markdown Review.md",
content: `# π Interactive Markdown & Document Review Workspace
Welcome to the ultimate document converter and real-time collaboration space.
## Core Features
1. **Pasted Text Conversion** β Drop raw text or standard Markdown right here.
2. **Side-by-Side Review** β See updates rendered live instantly using clean typographic styling.
3. **AI Proofreading & Humanizing** β Leverage top AI models (Gemini-3.5-flash & OpenRouter) for spellchecking, grammar correction, and tone adjustment.
4. **Cloud Workspace Synchronization** β Simulate real-time editing with encrypted local buffers.
### Sample Code Blocks to Test
\`\`\`javascript
// High-performance live formatting
function calculateReadingTime(text) {
const wordsPerMinute = 225;
const words = text.trim().split(/\\s+/).length;
return Math.ceil(words / wordsPerMinute);
}
console.log("Operational latency: 45ms");
\`\`\`
> "Good typography is invisible. Beautiful tools make the workflow seamless."
Enjoy collaborating with your workspace teammates Liam and Sarah! Edit this text to test.`,
version: 1,
lastSaved: new Date().toISOString(),
isSynced: true
},
{
id: "project-proposal",
title: "Enterprise Pitch Proposal.md",
content: `# Enterprise Expansion Pitch Proposal
## Objective
Establish a high-performance workspace for distributed engineering teams.
## High-performance Data Retrieval Strategy
- Minimize global bundle size
- Support secure server actions
- Fast visual feedback hooks
### Financials
- Editor Pro tier: $15/user/month
- Enterprise scale: Custom SLA contract
*Review suggested before finalizing.*`,
version: 1,
lastSaved: new Date().toISOString(),
isSynced: true
}
];
export const INITIAL_TEAM_MEMBERS: TeamMember[] = [];
|