diff --git a/chatgpt-to-claude/src/pages/blog/index.astro b/chatgpt-to-claude/src/pages/blog/index.astro new file mode 100644 index 000000000..2d79d7b4f --- /dev/null +++ b/chatgpt-to-claude/src/pages/blog/index.astro @@ -0,0 +1,43 @@ +--- +import BaseLayout from "@/layouts/BaseLayout.astro"; +import BlogCard from "@/components/blog/BlogCard.astro"; +import { getCollection } from "astro:content"; + +const posts = (await getCollection("blog")).sort( + (a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf() +); +--- + + +
+
+

Blog

+

+ Guides and tutorials for switching AI assistants and making the most of + Claude. +

+ + { + posts.length === 0 ? ( +

No posts yet. Check back soon.

+ ) : ( +
+ {posts.map((post) => ( + + ))} +
+ ) + } +
+
+
diff --git a/meeting-transcripts/chunk-nicholai.exe-1772440903362.wav b/meeting-transcripts/chunk-nicholai.exe-1772440903362.wav new file mode 100644 index 000000000..9ae7f92d3 Binary files /dev/null and b/meeting-transcripts/chunk-nicholai.exe-1772440903362.wav differ diff --git a/memory/memories.db-wal b/memory/memories.db-wal index 8f3736de7..d28ff8688 100644 Binary files a/memory/memories.db-wal and b/memory/memories.db-wal differ