Skip to content

Commit 63d2fec

Browse files
committed
simpler title, some better links in readme
1 parent ee11257 commit 63d2fec

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@ Based on [nextjs-github-pages](https://github.com/gregrickaby/nextjs-github-page
1313

1414
see also
1515
- [codespace admin](https://github.com/codespaces?repository_id=1036822786)
16-
- [gh codespace docs](https://docs.github.com/en/codespaces/troubleshooting/github-codespaces-logs)
16+
- [gh codespace docs](https://docs.github.com/en/codespaces/)
17+
- [gh devcontainer docs](https://docs.github.com/en/codespaces/setting-up-your-project-for-codespaces/adding-a-dev-container-configuration/introduction-to-dev-containers)
1718

1819
comp
1920
- [matt wolf's drops](https://github.com/mattwoodco/drops)
2021

2122
## Docs
2223

2324
```sh
25+
cd /workspaces/bookmarks
2426
npm run dev
2527
```
2628

@@ -31,22 +33,22 @@ npm run dev
3133
- CMD SHIFT P - select command
3234

3335
### CUSTOM
34-
- TODO CTRL SHIFT P should raise command palette
36+
- CTRL SHIFT P should raise command palette
3537
- CTRL SHIFT W - close tab
3638
- CTRL SHIFT ] - next tab
3739
- CTRL SHIFT [ - previous tab
3840

3941

4042
---
4143
## TODO
42-
- TODO codespaces notify of github action
43-
- TODO codespaces sync dotfiles https://docs.github.com/en/codespaces/troubleshooting/troubleshooting-personalization-for-codespaces
44+
- codespaces notify of github action
45+
- codespaces sync dotfiles https://docs.github.com/en/codespaces/troubleshooting/troubleshooting-personalization-for-codespaces
4446
- TODO implement serverless function
4547
> ⚠️ Heads up! GitHub Pages _does not_ support serverless or edge functions. This means dynamic functionality will be disabled. See all the [unsupported features](https://nextjs.org/docs/app/building-your-application/deploying/static-exports#unsupported-features).
46-
- TODO sync via something like firebase
47-
- TODO robust testing...
48-
- TODO resolve node version conflict as per creation log in codespace Node.js 16.20.2 vs 20 assumed by asdf
49-
- TODO consider Oauth a la drops
48+
- sync via something like firebase
49+
- robust testing...
50+
- resolve node version conflict as per creation log in codespace Node.js 16.20.2 vs 20 assumed by asdf
51+
- consider Oauth a la drops
5052

5153

5254
## Changelog

app/page.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ interface BlogPageProps {
99

1010
export default async function Page() {
1111
let myBlog: BlogPageProps;
12+
const RSS_FEED_URL = 'https://bg.raindrop.io/rss/public/58719856';
1213
try {
1314
// Replace with your RSS feed URL
14-
const RSS_FEED_URL = 'https://bg.raindrop.io/rss/public/58719856';
1515
const feed = await parseRSSFeed(RSS_FEED_URL);
1616
myBlog = {
1717
feed,
@@ -32,7 +32,9 @@ export default async function Page() {
3232
}
3333
return (
3434
<div className="container mx-auto px-4 py-8">
35-
<h1 className="text-3xl font-bold mb-6">{myBlog.feed.title}</h1>
35+
<h1 className="text-3xl font-bold mb-6">bookmarks&nbsp;
36+
<a className="text-xl text-blue-600 hover:text-blue-800" href={RSS_FEED_URL}>rss</a>
37+
</h1>
3638
<p className="text-gray-600 mb-8">{myBlog.feed.description}</p>
3739
<p className="text-sm text-gray-500 mb-8">Last updated: {myBlog.lastUpdated}</p>
3840
<div className="space-y-6">

0 commit comments

Comments
 (0)