diff --git a/src/info/components/footer-button.js b/src/info/components/footer-button.js index 697de29..c66b335 100644 --- a/src/info/components/footer-button.js +++ b/src/info/components/footer-button.js @@ -1,8 +1,23 @@ import Link from "next/link"; -export default function footerButton({ local, url, inner_text, is_external }) { +export default function footerButton({ theme, url, inner_text, is_external }) { const target = Boolean(is_external) ? is_external : ""; - if (local) { + if (theme == "Ada") { + return ( +
+ + +
+

+ {inner_text} +

+
+
+ +
+ ); + } + if (theme == "Skye") { return (
diff --git a/src/info/components/footer-card.js b/src/info/components/footer-card.js index 5f49396..08ee6ae 100755 --- a/src/info/components/footer-card.js +++ b/src/info/components/footer-card.js @@ -1,18 +1,60 @@ import FButton from "./footer-button"; -export default function FooterCard({ local }) { - if (local) { +export default function FooterCard({ theme }) { + if (theme == "Ada") { return ( -