Skip to content

Commit 93d7d26

Browse files
committed
new years
1 parent 51e491d commit 93d7d26

File tree

2 files changed

+37
-0
lines changed
  • app/blog/(blog-posts)/2024/december/thoughts-on-new-years-resolutions
  • public

2 files changed

+37
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import BlogPage from 'app/blog/BlogPage';
2+
import {fetchManifest} from '@lib/fetch-manifest';
3+
import {formatBlogPostMetadata} from 'lib/formatMetadata';
4+
5+
export let id = "4207262199959157369";
6+
7+
export async function generateMetadata() {
8+
let mainfest = await fetchManifest();
9+
let post = mainfest.posts.find(p => p.uuid === id);
10+
11+
return formatBlogPostMetadata({meta: post});
12+
}
13+
14+
<BlogPage id={id}>
15+
16+
For the past two years I've been tracking yearly goals for myself, however I haven't been starting them on January 1st like most others often do. Instead I've used my birthday (July 20th) as my "point of reference" for these yearly goals. (see [29](/blog/2023/july/29) and [30](/blog/2024/july/30) for examples).
17+
18+
January 1st provides a nice starting point as it's the start of a new calendar year, but for goal setting you don't need to wait for a specific date to start tracking progress and improving.
19+
20+
Don't wait to start making progress, set some goals, check back on them frequently, and improve!
21+
22+
</BlogPage>

public/feed.json

+15
Original file line numberDiff line numberDiff line change
@@ -2522,6 +2522,21 @@
25222522
"description": "A snippet of some shared terminology/concepts (memes) from my time on the Frontend Platform team at Wayfair!",
25232523
"publishedDate": "2024-12-19T22:52:34.152Z",
25242524
"uuid": "7289588799485102870"
2525+
},
2526+
{
2527+
"id": 173,
2528+
"title": "Thoughts on New Years Resolutions",
2529+
"path": "/posts/2024/december/thoughts-on-new-years-resolutions.md",
2530+
"slug": "thoughts-on-new-years-resolutions",
2531+
"date": "December 31st, 2024",
2532+
"time": "9:52:57 AM",
2533+
"month": "december",
2534+
"year": "2024",
2535+
"tags": ["Resolutions", "Goal", "Goals"],
2536+
"status": "public",
2537+
"description": "You don't need to wait until January 1st to set yearly goals and resolutions for yourself!",
2538+
"publishedDate": "2024-12-31T14:52:57.226Z",
2539+
"uuid": "4207262199959157369"
25252540
}
25262541
],
25272542
"notebookEntries": [

0 commit comments

Comments
 (0)