Skip to content

Commit

Permalink
Draft 1 Footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucasha11 committed Nov 9, 2023
1 parent 1147f43 commit e8292e5
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/_components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import React from "https://esm.sh/react"

export default function Footer({ title, faq_url}) {
export default function Footer({ title, faq_url, blueprint_url}) {
return (
<html>
<footer className="bg-white dark:bg-gray-900">
Expand All @@ -9,8 +7,8 @@ export default function Footer({ title, faq_url}) {
<div className="mb-6 md:mb-0">
{/* change to BluePrint logo and possible link? */}

<a href="https://flowbite.com/" className="flex items-center">
<img src="https://flowbite.com/docs/images/logo.svg" className="h-8 mr-3" alt="FlowBite Logo" />
<a href={blueprint_url} className="flex items-center">
<img src="logo.png" className="h-8 mr-3" alt="blueprint Logo" />
<span className="self-center text-2xl font-semibold whitespace-nowrap dark:text-white">blueprint</span>
</a>
</div>
Expand Down Expand Up @@ -72,4 +70,4 @@ export default function Footer({ title, faq_url}) {
</footer>
</html>
);
}
}

0 comments on commit e8292e5

Please sign in to comment.