Skip to content

Commit 871cf67

Browse files
committed
rebrand
1 parent 4f873a0 commit 871cf67

4 files changed

Lines changed: 19 additions & 19 deletions

File tree

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Note Revisitor - Review Your Notes</title>
6+
<title>NostRecall - Review Your Notes</title>
77
<meta name="description" content="Review your notes to see which might fit the current vibe. A Nostr-powered app for rediscovering your thoughts." />
88
<meta property="og:type" content="website" />
9-
<meta property="og:title" content="Note Revisitor - Review Your Notes" />
10-
<meta property="og:description" content="Review your notes to see which might fit the current vibe. A Nostr-powered app for rediscovering your thoughts." />
9+
<meta property="og:title" content="NostRecall - Review Your Notes" />
10+
<meta property="og:description" content="Review your notes to pick up on past conversations, boost your best content and remember important info." />
1111
<meta http-equiv="content-security-policy" content="default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; frame-src 'self' https:; font-src 'self'; base-uri 'self'; manifest-src 'self'; connect-src 'self' blob: https: wss:; img-src 'self' data: blob: https:; media-src 'self' https:">
1212
<link rel="manifest" href="/manifest.webmanifest">
1313
</head>

public/manifest.webmanifest

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "Note Revisitor",
3-
"short_name": "Note Revisitor",
4-
"description": "Review your notes to see which might fit the current vibe. A Nostr-powered app for rediscovering your thoughts.",
2+
"name": "NostRecall",
3+
"short_name": "NostRecall",
4+
"description": "Review your notes to pick up on past conversations, boost your best content and remember important info.",
55
"start_url": "/",
66
"display": "standalone",
77
"background_color": "#ffffff",
@@ -18,4 +18,4 @@
1818
"type": "image/png"
1919
}
2020
]
21-
}
21+
}

src/pages/Index.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { Brain, Clock, TrendingUp, BookOpen } from 'lucide-react';
66

77
const Index = () => {
88
useSeoMeta({
9-
title: 'Note Revisitor - Review Your Notes',
10-
description: 'Review your notes to see which might fit the current vibe. A Nostr-powered app for rediscovering your thoughts.',
9+
title: 'NostRecall - Review Your Notes',
10+
description: 'Review your notes to pick up on past conversations, boost your best content and remember important info.',
1111
});
1212

1313
return (
@@ -17,16 +17,16 @@ const Index = () => {
1717
{/* Hero Section */}
1818
<div className="space-y-4">
1919
<h1 className="text-5xl font-bold text-gray-900 dark:text-gray-100">
20-
Note Revisitor
20+
NostRecall
2121
</h1>
2222
<p className="text-xl text-gray-600 dark:text-gray-400 max-w-2xl mx-auto">
23-
Review your notes to see which might fit the current vibe.
23+
Review your notes to pick up on past conversations, boost your best content and remember important info.
2424
</p>
2525
<div className="pt-4">
2626
<Button asChild size="lg" className="text-lg px-8 py-3">
2727
<Link to="/notes">
2828
<Brain className="h-5 w-5 mr-2" />
29-
Start Revisiting
29+
Start Recalling
3030
</Link>
3131
</Button>
3232
</div>
@@ -39,7 +39,7 @@ const Index = () => {
3939
<Clock className="h-12 w-12 text-blue-500 mx-auto mb-4" />
4040
<CardTitle>Smart Scheduling</CardTitle>
4141
<CardDescription>
42-
Revisit notes at optimal intervals to rediscover insights that match your current mindset
42+
Revisit notes at optimal intervals to rediscover and share insights.
4343
</CardDescription>
4444
</CardHeader>
4545
</Card>
@@ -49,7 +49,7 @@ const Index = () => {
4949
<TrendingUp className="h-12 w-12 text-green-500 mx-auto mb-4" />
5050
<CardTitle>Track Progress</CardTitle>
5151
<CardDescription>
52-
Monitor your revisiting journey and see which notes resonate with you over time
52+
Monitor your revisiting journey and see which notes resonate over time
5353
</CardDescription>
5454
</CardHeader>
5555
</Card>
@@ -104,7 +104,7 @@ const Index = () => {
104104
</div>
105105
<h3 className="font-semibold">Complete the Cycle</h3>
106106
<p className="text-sm text-gray-600 dark:text-gray-400">
107-
After all revisits, you'll have fully explored which notes resonate with you
107+
After all revisits, you'll have fully explored which notes resonate
108108
</p>
109109
</div>
110110
</div>

src/pages/NotesPage.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ export default function NotesPage() {
2020
return (
2121
<div className="container mx-auto px-4 py-8">
2222
<div className="max-w-2xl mx-auto text-center space-y-6">
23-
<h1 className="text-3xl font-bold">Note Revisitor</h1>
23+
<h1 className="text-3xl font-bold">NostRecall</h1>
2424
<p className="text-muted-foreground">
25-
Review your notes to see which might fit the current vibe.
25+
Review your notes to pick up on past conversations, boost your best content and remember important info.
2626
</p>
2727
<LoginArea className="max-w-60 mx-auto" />
2828
</div>
@@ -40,7 +40,7 @@ export default function NotesPage() {
4040
<div>
4141
<h1 className="text-3xl font-bold">My Notes</h1>
4242
<p className="text-muted-foreground">
43-
Revisit your thoughts and find your vibe
43+
Revisit your notes and conversations
4444
</p>
4545
</div>
4646
{notes && notes.length > 0 && (
@@ -121,4 +121,4 @@ export default function NotesPage() {
121121
</div>
122122
</div>
123123
);
124-
}
124+
}

0 commit comments

Comments
 (0)