diff --git a/src/components/ExpandableStory.tsx b/src/components/ExpandableStory.tsx
index a9d7902..0267fb6 100644
--- a/src/components/ExpandableStory.tsx
+++ b/src/components/ExpandableStory.tsx
@@ -1,6 +1,7 @@
'use client';
import { useState } from 'react';
+import Link from 'next/link';
import { Story } from '@/data/creative';
import { formatReadingTime } from '@/utils/readingTime';
@@ -29,6 +30,12 @@ export default function ExpandableStory({ story }: ExpandableStoryProps) {
{story.excerpt}
+
+ Read Full Story
+
{formatReadingTime(story.readTime)} read
diff --git a/src/components/ExpandableThought.tsx b/src/components/ExpandableThought.tsx
index 0ed791d..c5942ce 100644
--- a/src/components/ExpandableThought.tsx
+++ b/src/components/ExpandableThought.tsx
@@ -1,6 +1,7 @@
"use client";
import { useState } from "react";
+import Link from "next/link";
import { Thought } from "@/data/creative";
import { formatReadingTime } from "@/utils/readingTime";
import Markdown from "react-markdown";
@@ -36,6 +37,12 @@ export default function ExpandableThought({ thought }: ExpandableThoughtProps) {
{thought.excerpt}
+
+ Read Full Thought
+