diff --git a/src/components/mdx/WordEntry.astro b/src/components/mdx/WordEntry.astro
new file mode 100644
index 00000000..c01d9d6b
--- /dev/null
+++ b/src/components/mdx/WordEntry.astro
@@ -0,0 +1,129 @@
+---
+interface Props {
+ word: string;
+ sourceTitle: string;
+ sourceAuthor?: string;
+ sourceLink?: string;
+ sentence?: string;
+}
+
+const { word, sourceTitle, sourceAuthor, sourceLink, sentence } = Astro.props;
+---
+
+
+
{word}
+
+
+
+
+ {sourceLink ? (
+
+ {sourceTitle}
+
+ ) : (
+
{sourceTitle}
+ )}
+ {sourceAuthor && (
+ <>
+
+
{sourceAuthor}
+ >
+ )}
+
+ {sentence && (
+
{sentence}
+ )}
+
+
+
diff --git a/src/content/notes/new-words.mdx b/src/content/notes/new-words.mdx
new file mode 100644
index 00000000..8a0a62e1
--- /dev/null
+++ b/src/content/notes/new-words.mdx
@@ -0,0 +1,68 @@
+---
+title: "New Words"
+description: "A collection of words I've come across that I didn't know before"
+startDate: "2026-01-27"
+updated: "2026-01-27"
+type: "note"
+topics: ["Linguistics", "Language", "Learning"]
+growthStage: "seedling"
+---
+
+import WordEntry from "../../components/mdx/WordEntry.astro";
+import GridColumns from "../../components/mdx/GridColumns.astro";
+import IntroParagraph from "../../components/mdx/IntroParagraph.astro";
+
+