Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit 594781e

Browse files
committed
Refine descriptions across README and components for consistency and clarity
1 parent fe555ad commit 594781e

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Tiles Notebook
22

3-
Tiles is a notebook interface that makes working with AI agents easier. It's a multiplayer, offline-first experience built on MCP, featuring AI-generated widgets. Our vision is to make personal software ubiquitous in the future.
3+
Tiles is a notebook that makes working with AI agents easier. It's a multiplayer, offline-first experience built on MCP, featuring AI-generated widgets. Our vision is to make personal software ubiquitous in the future.
44

55
## Project Structure
66

packages/tiles-playground/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { McpProvider } from '../contexts/McpContext';
55

66
export const metadata: Metadata = {
77
title: 'Tiles Notebook | Note Taking Tool With AI Agents',
8-
description: 'A notebook interface that makes working with AI agents easier.',
8+
description: 'A notebook that makes working with AI agents easier.',
99
icons: {
1010
icon: [
1111
{ url: '/favicon.ico' },
@@ -18,7 +18,7 @@ export const metadata: Metadata = {
1818
},
1919
openGraph: {
2020
title: 'Tiles Notebook | Note Taking Tool With AI Agents',
21-
description: 'A notebook interface that makes working with AI agents easier.',
21+
description: 'A notebook that makes working with AI agents easier.',
2222
images: [
2323
{
2424
url: '/api/og', // This should point to your OpenGraph route

packages/tiles-playground/components/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ function App(): JSX.Element {
165165
<a href="https://tiles.run/shared/RYcEAFb16btn8a7SKx3bV" target="_blank" rel="noreferrer" style={{color: '#007bff', textDecoration: 'none'}}>Terms</a>
166166
</p>
167167
<p>
168-
Check out <a href="https://tilekit.dev" target="_blank" rel="noreferrer" style={{color: '#007bff', textDecoration: 'none'}}>Tilekit</a> for the underlying personal software toolkit.
168+
Check out <a href="https://tilekit.dev" target="_blank" rel="noreferrer" style={{color: '#007bff', textDecoration: 'none'}}>Tilekit</a> for the personal software toolkit.
169169
</p>
170170
<p>
171171
Designed and built by <a href="https://ankeshbharti.com" target="_blank" rel="noreferrer" style={{color: '#007bff', textDecoration: 'none'}}>@feynon</a> and <a href="https://aswinc.blog" target="_blank" rel="noreferrer" style={{color: '#007bff', textDecoration: 'none'}}>@chandanaveli</a>.

packages/tiles-playground/components/SharedEditor.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ function SharedEditorContent({ documentId, initialContent }: SharedEditorProps)
218218
padding: '20px',
219219
textAlign: 'center',
220220
}}>
221-
<p>Tiles is a notebook interface that makes working with AI agents easier.</p>
221+
<p>Tiles is a notebook that makes working with AI agents easier.</p>
222222
<p>It&apos;s a multiplayer, offline-first experience built on MCP, featuring AI-generated widgets.</p>
223223
<p>
224224
Check out{' '}
@@ -229,7 +229,7 @@ function SharedEditorContent({ documentId, initialContent }: SharedEditorProps)
229229
style={{color: '#007bff', textDecoration: 'none'}}>
230230
Tilekit
231231
</a>{' '}
232-
for the underlying personal software toolkit.
232+
for the personal software toolkit.
233233
</p>
234234
</footer>
235235
</>

packages/tiles-playground/utils/initialContent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export function $prepopulatedRichText() {
2020
// Add first paragraph
2121
const paragraph1 = $createParagraphNode();
2222
paragraph1.append(
23-
$createTextNode('Tiles is a notebook interface that makes working with AI agents easier. It\'s a multiplayer, offline-first experience built on MCP, featuring AI-generated widgets.')
23+
$createTextNode('Tiles is a notebook that makes working with AI agents easier. It\'s a multiplayer, offline-first experience built on MCP, featuring AI-generated widgets.')
2424
);
2525
root.append(paragraph1);
2626

packages/wasm-runner/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1195,7 +1195,7 @@ const Home: NextPage = () => {
11951195
</main>
11961196

11971197
<footer className="footer">
1198-
Tilekit is the underlying personal software framework that powers the <a href="https://tiles.run/" className="builder-link">tiles.run</a> notebook interface. Github: <a href="https://github.com/Agent54/tilekit/tree/dev/packages/wasm-runner" className="builder-link">Agent54/tilekit</a>
1198+
Tilekit is the personal software framework that powers the <a href="https://tiles.run/" className="builder-link">tiles.run</a> notebook interface. Github: <a href="https://github.com/Agent54/tilekit/tree/dev/packages/wasm-runner" className="builder-link">Agent54/tilekit</a>
11991199
<br /> Designed and built by <a href="https://ankeshbharti.com" className="builder-link">@feynon</a> and <a href="https://aswinc.blog" className="builder-link">@chandanaveli</a>.
12001200
</footer>
12011201

0 commit comments

Comments
 (0)