Skip to content

Commit 4e152d2

Browse files
change footer and favicon
1 parent b3e2b26 commit 4e152d2

File tree

2 files changed

+10
-15
lines changed

2 files changed

+10
-15
lines changed

app/app/favicon.ico

-140 KB
Binary file not shown.

app/components/footer.tsx

+10-15
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,41 @@
11
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";
43

54
export function Footer() {
65
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{" "}
1110
<a
1211
href="https://www.openzeppelin.com/"
1312
target="_blank"
1413
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"
1615
>
1716
OpenZeppelin
18-
<ExternalLink className="h-3 w-3" />
1917
</a>
2018
. Subject to our{" "}
2119
<a
2220
href="https://www.openzeppelin.com/tos"
2321
target="_blank"
2422
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"
2624
>
27-
Terms of Service
25+
Terms of Service
2826
</a>
29-
30-
. <Code2 className="h-4 w-4" /> Script by{" "}
27+
. Script by{" "}
3128
<a
3229
href="https://github.com/pcaversaccio"
3330
target="_blank"
3431
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"
3633
>
3734
pcaversaccio
38-
<ExternalLink className="h-3 w-3" />
3935
</a>
4036
.
4137
</p>
4238
</div>
43-
<Separator className="mt-6" />
4439
</footer>
4540
);
4641
}

0 commit comments

Comments
 (0)