@@ -5,6 +5,9 @@ import remarkGfm from 'remark-gfm';
55import rehypeRaw from 'rehype-raw' ;
66import piml from 'piml' ;
77import { ArrowSquareOut , SealCheck } from '@phosphor-icons/react' ;
8+ import GrainOverlay from '../../components/GrainOverlay' ;
9+ import CoffeeStain from '../../components/CoffeeStain' ;
10+ import CensoredPolaroid from '../../components/CensoredPolaroid' ;
811
912const LinkRenderer = ( { href, children} ) => {
1013 const isExternal = href . startsWith ( 'http' ) || href . startsWith ( 'https' ) ;
@@ -69,7 +72,9 @@ const SimpleText = () => {
6972
7073 return (
7174 < div
72- className = "h-full bg-[#f3f3f3] text-[#111] overflow-y-auto selection:bg-black selection:text-white custom-scrollbar font-sans" >
75+ className = "h-full bg-[#f3f3f3] text-[#111] overflow-y-auto selection:bg-black selection:text-white custom-scrollbar font-sans relative" >
76+ < GrainOverlay />
77+ < CoffeeStain />
7378
7479 { /* Top Secret Stamp / Decor */ }
7580 < div className = "fixed top-0 right-0 p-8 opacity-10 pointer-events-none z-0" >
@@ -84,6 +89,7 @@ const SimpleText = () => {
8489 transition = { { duration : 0.8 , ease : "circOut" } }
8590 className = "max-w-4xl mx-auto px-6 py-24 md:py-32 relative z-10"
8691 >
92+ < CensoredPolaroid imageUrl = "/images/herdaim.jpg" censored = { true } />
8793 < header className = "mb-20" >
8894 < div className = "flex flex-col items-start gap-4 mb-8" >
8995 < span className = "bg-black text-white px-3 py-1 font-mono text-xs tracking-[0.3em] uppercase" > Fezcodex Archive // File #8942</ span >
@@ -111,6 +117,7 @@ const SimpleText = () => {
111117 prose-thead:bg-black prose-thead:text-white
112118 prose-th:p-4 prose-th:uppercase prose-th:tracking-wider prose-th:font-normal prose-th:text-left prose-th:text-white
113119 prose-td:p-4 prose-td:border-b prose-td:border-gray-300 prose-td:text-gray-700
120+
114121 prose-blockquote:border-l-4 prose-blockquote:border-black prose-blockquote:pl-6 prose-blockquote:italic prose-blockquote:bg-white prose-blockquote:p-6 prose-blockquote:shadow-sm"
115122 >
116123 < ReactMarkdown
@@ -137,4 +144,4 @@ const SimpleText = () => {
137144 ) ;
138145} ;
139146
140- export default SimpleText ;
147+ export default SimpleText ;
0 commit comments