File size: 1,387 Bytes
f680c3f
a8d792f
 
 
f680c3f
a8d792f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f680c3f
a8d792f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { Github } from "lucide-react";

export function Footer() {
  return (
    <footer className="w-full border-t border-gray-300 dark:border-border">
      <div className="container mx-auto flex h-16 items-center justify-center px-4 md:px-6">
        <div className="flex items-center gap-4 text-sm text-muted-foreground">
          <span>
            Created with ❤️ by{" "}
            <a
              href="https://github.com/timpietrusky"
              target="_blank"
              rel="noopener noreferrer"
              className="text-primary hover:text-accent transition-colors underline"
            >
              Tim Pietrusky
            </a>{" "}
            under{" "}
            <a
              href="https://github.com/timpietrusky/lerobot.js/blob/main/LICENSE"
              target="_blank"
              rel="noopener noreferrer"
              className="text-primary hover:text-accent transition-colors underline"
            >
              Apache 2.0
            </a>
          </span>
          <a
            href="https://github.com/timpietrusky/lerobot.js"
            target="_blank"
            rel="noopener noreferrer"
            className="flex items-center gap-1 hover:text-foreground transition-colors"
          >
            <Github className="h-4 w-4" />
            GitHub
          </a>
        </div>
      </div>
    </footer>
  );
}