|
1 | 1 | import React from "react";
|
2 |
| -import { Separator } from "@/components/ui/separator"; |
3 |
| -import { Code2, Building2, ExternalLink, Heart } from "lucide-react"; |
| 2 | +import { Heart } from "lucide-react"; |
4 | 3 |
|
5 | 4 | export function Footer() {
|
6 | 5 | return (
|
7 |
| - <footer className="py-0 md:px-8 md:py-0"> |
8 |
| - <div className="container flex flex-col items-center justify-between gap-4 md:h-12 md:flex-row"> |
9 |
| - <p className="text-center text-sm leading-loose text-muted-foreground md:text-left p-5 flex items-center gap-2 flex-wrap justify-center md:justify-start"> |
10 |
| - Developed with <Heart className="h-4 w-4 fill-current text-red-500" /> by{" "} |
| 6 | + <footer className="py-4 w-full flex items-center justify-center"> |
| 7 | + <div className="container flex items-center justify-center"> |
| 8 | + <p className="text-center text-sm text-muted-foreground flex items-center gap-2 flex-wrap justify-center"> |
| 9 | + Developed with <Heart className="h-4 w-4 fill-current " /> by{" "} |
11 | 10 | <a
|
12 | 11 | href="https://www.openzeppelin.com/"
|
13 | 12 | target="_blank"
|
14 | 13 | rel="noopener noreferrer"
|
15 |
| - className="font-medium underline underline-offset-4 inline-flex items-center gap-1" |
| 14 | + className="font-medium underline underline-offset-4" |
16 | 15 | >
|
17 | 16 | OpenZeppelin
|
18 |
| - <ExternalLink className="h-3 w-3" /> |
19 | 17 | </a>
|
20 | 18 | . Subject to our{" "}
|
21 | 19 | <a
|
22 | 20 | href="https://www.openzeppelin.com/tos"
|
23 | 21 | target="_blank"
|
24 | 22 | rel="noopener noreferrer"
|
25 |
| - className="font-medium underline underline-offset-4 inline-flex items-center gap-1" |
| 23 | + className="font-medium underline underline-offset-4" |
26 | 24 | >
|
27 |
| - Terms of Service |
| 25 | + Terms of Service |
28 | 26 | </a>
|
29 |
| - |
30 |
| - . <Code2 className="h-4 w-4" /> Script by{" "} |
| 27 | + . Script by{" "} |
31 | 28 | <a
|
32 | 29 | href="https://github.com/pcaversaccio"
|
33 | 30 | target="_blank"
|
34 | 31 | rel="noopener noreferrer"
|
35 |
| - className="font-medium underline underline-offset-4 inline-flex items-center gap-1" |
| 32 | + className="font-medium underline underline-offset-4" |
36 | 33 | >
|
37 | 34 | pcaversaccio
|
38 |
| - <ExternalLink className="h-3 w-3" /> |
39 | 35 | </a>
|
40 | 36 | .
|
41 | 37 | </p>
|
42 | 38 | </div>
|
43 |
| - <Separator className="mt-6" /> |
44 | 39 | </footer>
|
45 | 40 | );
|
46 | 41 | }
|
0 commit comments