-
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
3 changed files
with
104 additions
and
1 deletion.
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,72 @@ | ||
export default async function Footer() { | ||
return ( | ||
<div> | ||
<footer className="text-gray-800 w-4/5 mx-auto inter md:pt-24"> | ||
<div className="container px-5 py-24 mx-auto flex md:items-center lg:items-start md:flex-row md:flex-nowrap flex-wrap flex-col"> | ||
<div className="flex-grow flex flex-wrap -mb-10 md:mt-0 mt-10 md:text-left text-center"> | ||
<div className="lg:w-1/4 md:w-1/2 w-full px-4"> | ||
<h2 className="font-medium text-gray-900 text-base mb-3"> | ||
About | ||
</h2> | ||
<nav className="list-none mb-10 flex flex-col text-sm space-y-3 font-normal"> | ||
<li> | ||
<a className="text-gray-600 hover:text-gray-800 cursor-pointer"> | ||
Me | ||
</a> | ||
</li> | ||
</nav> | ||
</div> | ||
<div className="lg:w-1/4 md:w-1/2 w-full px-4"> | ||
<h2 className="font-medium text-gray-900 text-base mb-3"> | ||
Contact | ||
</h2> | ||
<nav className="list-none mb-10 flex flex-col space-y-3 text-sm font-normal"> | ||
<li> | ||
<a className="text-gray-600 hover:text-gray-800 cursor-pointer"> | ||
</a> | ||
</li> | ||
</nav> | ||
</div> | ||
<div className="lg:w-1/4 md:w-1/2 w-full px-4"> | ||
<h2 className="font-medium text-gray-900 text-base mb-3"> | ||
Legal | ||
</h2> | ||
<nav className="list-none mb-10 flex flex-col space-y-3 text-sm font-normal"> | ||
<li> | ||
<a className="text-gray-600 hover:text-gray-800 cursor-pointer" href='/imprint'> | ||
Imprint | ||
</a> | ||
</li> | ||
<li> | ||
<a className="text-gray-600 hover:text-gray-800 cursor-pointer"> | ||
Privacy | ||
</a> | ||
</li> | ||
</nav> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
<div className="w-4/5 mx-auto py-2 md:mt-12 text-sm"> | ||
<hr className="h-px bg-gray-500 opacity-30 border-0 mb-4" /> | ||
<div className="flex items-center mx-auto text-gray-600 container justify-center md:justify-between py-2"> | ||
<div> | ||
<span className="font-normal"> | ||
© Copyright 2023, All Rights Reserved{' '} | ||
</span> | ||
</div> | ||
<a | ||
className="items-center gap-2 hidden md:flex" | ||
href="https://github.com/dhommen/dhommen.github.io" | ||
rel="noopener noreferrer" | ||
> | ||
<span className="hover:underline focus-visible:underline"> | ||
Version: 1.0.0 | ||
</span> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} |
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 @@ | ||
export default function Imprint() { | ||
return ( | ||
<main className="flex min-h-screen flex-col items-center justify-between p-24"> | ||
<section> | ||
<h2>Website Owner</h2> | ||
<p>Daniel Hommen</p> | ||
<p>Email: [email protected]</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Responsible for Content</h2> | ||
<p>Daniel Hommen</p> | ||
<p>Email: [email protected]</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Disclaimer</h2> | ||
<p>This website is for informational purposes only. The information is provided by Your Name and while we strive to keep the information up to date and correct, we make no representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability, or availability with respect to the website or the information, products, services, or related graphics contained on the website for any purpose.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Copyright Information</h2> | ||
<p>© 2023 Daniel Hommen - All Rights Reserved</p> | ||
</section> | ||
</main> | ||
) | ||
} |
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