File tree Expand file tree Collapse file tree 1 file changed +33
-9
lines changed
Expand file tree Collapse file tree 1 file changed +33
-9
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,39 @@ const currentYear = new Date().getFullYear();
77
88<footer >
99 <HorizontalContainer >
10- <div class =" flex justify-end pb-16 pt-12" >
11- <p
12- class =" tracking-tight text-gray dark:text-gray md:text-base lg:text-lg"
13- >
14- Copyright © { currentYear }
15- <Link href =" https://determinate.systems" class =" hover:text-primary" >
16- Determinate Systems, Inc.
17- </Link >
18- </p >
10+ <div class =" pb-16 pt-12" >
11+ <div class =" flex items-center justify-between" >
12+ <div class =" flex items-center gap-4" >
13+ <strong >AI tools</strong >
14+ <ul class =" flex items-center gap-2" >
15+ {
16+ [" llms.txt" , " llms-small.txt" , " llms-full.txt" ].map ((file ) => (
17+ <li >
18+ <a
19+ href = { ` /${file } ` }
20+ class = " text-sm text-gray duration-hover hover:text-nix-light-blue dark:hover:text-orange"
21+ >
22+ <code >{ file } </code >
23+ </a >
24+ </li >
25+ ))
26+ }
27+ </ul >
28+ </div >
29+ <div >
30+ <p
31+ class =" tracking-tight text-gray dark:text-gray md:text-base lg:text-lg"
32+ >
33+ Copyright © { currentYear }
34+ <Link
35+ href =" https://determinate.systems"
36+ class =" duration-hover hover:text-primary dark:hover:text-orange"
37+ >
38+ Determinate Systems, Inc.
39+ </Link >
40+ </p >
41+ </div >
42+ </div >
1943 </div >
2044 </HorizontalContainer >
2145</footer >
You can’t perform that action at this time.
0 commit comments