generated from juansedom/next-ui-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from "react"; | ||
import Link from "next/link"; | ||
|
||
export default function Footer() { | ||
return ( | ||
<footer className="fixed bottom-0 w-full bg-gray-800 py-4"> | ||
<div className="container mx-auto px-4"> | ||
<div className="flex flex-wrap justify-between items-center"> | ||
<div className="w-full md:w-auto text-center md:text-left mb-4 md:mb-0"> | ||
<p className="text-white">© 2021 My Website</p> | ||
</div> | ||
<div className="w-full md:w-auto text-center md:text-right"> | ||
<Link href="#" className="text-white hover:text-gray-400 mx-2"> | ||
Privacy Policy | ||
</Link> | ||
<Link href="#" className="text-white hover:text-gray-400 mx-2"> | ||
Terms of Service | ||
</Link> | ||
<Link href="#" className="text-white hover:text-gray-400 mx-2"> | ||
Contact Us | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
} |