File tree 1 file changed +32
-0
lines changed 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,42 @@ export default async function Page({ params }: { params: { slug: string } }) {
33
33
{ page . data . description }
34
34
</ h2 >
35
35
< MDX />
36
+ < Footer />
36
37
</ main >
37
38
)
38
39
}
39
40
41
+ function Footer ( ) {
42
+ return (
43
+ < >
44
+ < hr className = "mb-12" />
45
+ < footer className = "flex sm:flex-row flex-col gap-4 " >
46
+ < Image
47
+ src = { pomber }
48
+ alt = "Rodrigo Pombo"
49
+ width = { 64 }
50
+ height = { 64 }
51
+ priority = { true }
52
+ className = "rounded-lg my-0 self-center sm:self-start"
53
+ />
54
+ < p className = "min-w-0 self-start my-0 text-pretty" >
55
+ < strong > Rodrigo Pombo</ strong > , a.k.a.{ " " }
56
+ < a href = "https://x.com/pomber" >
57
+ < strong > @pomber</ strong >
58
+ </ a >
59
+ , is a software overengineer working on{ " " }
60
+ < Link href = "/" className = "whitespace-nowrap" >
61
+ Code Hike
62
+ </ Link >
63
+ , an open-source library that bridges the gap between Markdown and
64
+ React to help developers{ " " }
65
+ < strong > create rich technical content for the modern web</ strong > .
66
+ </ p >
67
+ </ footer >
68
+ </ >
69
+ )
70
+ }
71
+
40
72
import pomber from "./pomber.jpg"
41
73
import Link from "next/link"
42
74
You can’t perform that action at this time.
0 commit comments