@@ -14,9 +14,9 @@ const OpenSource = () => {
14
14
return (
15
15
< div className = "min-h-[50vh] w-full" >
16
16
< div className = "flex flex-row" >
17
- < div className = "relative w-full" >
17
+ < div className = "relative hidden w-full md:flex " >
18
18
< Terminal className = "absolute" title = "index.ts" >
19
- < pre className = "overflow-hidden" >
19
+ < pre className = "overflow-x- hidden" >
20
20
{ "" +
21
21
"<!DOCTYPE html>\n" +
22
22
"<html>\n" +
@@ -42,7 +42,7 @@ const OpenSource = () => {
42
42
</ pre >
43
43
</ Terminal >
44
44
< Terminal className = "absolute left-16 top-20 z-10" title = "agent_service.py" >
45
- < pre >
45
+ < pre className = "overflow-x-hidden" >
46
46
{ "import requests\n" +
47
47
"\n" +
48
48
"# Define the API endpoint\n" +
@@ -74,9 +74,14 @@ const OpenSource = () => {
74
74
community. This is why we are proudly open source. We'd love to hear your feedback at
75
75
every step of the journey.
76
76
</ p >
77
- < a href = "https://github.com/reworkd" target = "_blank" className = "mt-16" >
78
- < PrimaryButton > View on Github</ PrimaryButton >
79
- </ a >
77
+ < div className = "mt-6 flex flex-row gap-4" >
78
+ < a href = "https://github.com/reworkd" target = "_blank" >
79
+ < PrimaryButton > View on Github</ PrimaryButton >
80
+ </ a >
81
+ < a href = "https://github.com/orgs/reworkd/projects/3" target = "_blank" >
82
+ < PrimaryButton outline > Public Roadmap</ PrimaryButton >
83
+ </ a >
84
+ </ div >
80
85
</ div >
81
86
</ div >
82
87
</ div >
@@ -86,7 +91,7 @@ const OpenSource = () => {
86
91
const Terminal = ( props : TerminalProps ) => {
87
92
return (
88
93
< div
89
- className = { clsx ( "w-full max-w-md rounded-xl bg-neutral-800 drop-shadow-2xl" , props . className ) }
94
+ className = { clsx ( "w-3/4 max-w-md rounded-xl bg-neutral-800 drop-shadow-2xl" , props . className ) }
90
95
>
91
96
< MacWindowInternal > { props . title } </ MacWindowInternal >
92
97
< div className = "h-72 overflow-hidden rounded-b-xl bg-neutral-900 p-4 text-[8pt] text-gray-400" >
0 commit comments