From c5adea5672288036a3b251ca665eb1740363f167 Mon Sep 17 00:00:00 2001 From: neutrino2211 Date: Thu, 9 Oct 2025 01:18:10 +0100 Subject: [PATCH] direct thought/story urls --- src/components/ExpandableStory.tsx | 7 +++++++ src/components/ExpandableThought.tsx | 7 +++++++ 2 files changed, 14 insertions(+) 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 +