Skip to content

Commit

Permalink
fix: remove temp footer
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoEscaleira committed Mar 6, 2024
1 parent e918789 commit d6f6e50
Showing 1 changed file with 1 addition and 51 deletions.
52 changes: 1 addition & 51 deletions src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,57 +1,7 @@
import { Typography } from "@material-tailwind/react";

export function Footer() {
return (
<footer className="w-full bg-white p-8">
<div className="flex flex-row flex-wrap items-center justify-center gap-x-12 gap-y-6 bg-white text-center md:justify-between">
<img src="https://docs.material-tailwind.com/img/logo-ct-dark.png" alt="logo-ct" className="w-10" />
<ul className="flex flex-wrap items-center gap-x-8 gap-y-2">
<li>
<Typography
as="a"
href="#"
color="blue-gray"
className="font-normal transition-colors hover:text-blue-500 focus:text-blue-500"
>
About Us
</Typography>
</li>
<li>
<Typography
as="a"
href="#"
color="blue-gray"
className="font-normal transition-colors hover:text-blue-500 focus:text-blue-500"
>
License
</Typography>
</li>
<li>
<Typography
as="a"
href="#"
color="blue-gray"
className="font-normal transition-colors hover:text-blue-500 focus:text-blue-500"
>
Contribute
</Typography>
</li>
<li>
<Typography
as="a"
href="#"
color="blue-gray"
className="font-normal transition-colors hover:text-blue-500 focus:text-blue-500"
>
Contact Us
</Typography>
</li>
</ul>
</div>
<hr className="my-8 border-blue-gray-50" />
<Typography color="blue-gray" className="text-center font-normal">
&copy; 2023 Material Tailwind
</Typography>

</footer>
);
}

0 comments on commit d6f6e50

Please sign in to comment.