diff --git a/src/info/components/identity-card.js b/src/info/components/identity-card.js index c8087b1..16323b1 100644 --- a/src/info/components/identity-card.js +++ b/src/info/components/identity-card.js @@ -9,12 +9,27 @@ export default function IdentityCard({ alt, src2, alt2, + children, }) { - if (src2) { + if (children) { return (
-

+

+ + {alt} + {" "} + {title} +

+
+ {children} +
+ ); + } else if (src2) { + return ( +
+
+

{alt} {" "} @@ -22,7 +37,7 @@ export default function IdentityCard({

-

+

{Object.keys(info).map((i) => (

{info[i]} @@ -50,7 +65,7 @@ export default function IdentityCard({ return (

-

+

{alt} {" "} @@ -58,14 +73,14 @@ export default function IdentityCard({

-

+

{Object.keys(info).map((i) => (

{info[i]}

))}

-
+
- + {field} ); } else { return ( -

+

{field}

); @@ -39,10 +39,10 @@ export default function LoveCard({ src, alt, url, fields, bio, user }) { : "text-werefox-pink-dark dark:text-werefox-pink"; return ( -
+
-
+
{" "} {" "}
-
+
{Object.keys(fields).map((field) => ( <> {renderPossibleURLField(field)} @@ -62,7 +62,7 @@ export default function LoveCard({ src, alt, url, fields, bio, user }) { ))}
-
+

{bio}
diff --git a/src/info/pages/contacts/index.js b/src/info/pages/contacts/index.js index 135ffe0..68a69da 100644 --- a/src/info/pages/contacts/index.js +++ b/src/info/pages/contacts/index.js @@ -37,7 +37,7 @@ export default function Contacts() {

- + - @shadow8t4 + @alexis_werefox

diff --git a/src/info/pages/identities/partners/index.js b/src/info/pages/identities/partners/index.js index d89c7a0..b8ca3e0 100644 --- a/src/info/pages/identities/partners/index.js +++ b/src/info/pages/identities/partners/index.js @@ -1,11 +1,12 @@ import BasicPage from "../../../components/basic-page-template"; -import WCard from "../../../components/werefox-card"; +import IDCard from "../../../components/identity-card"; import LCard from "../../../components/love-card"; +import WCard from "../../../components/werefox-card"; // Use this to list out partner info on this page. >w> const PARTNERS = { - // username: { + // parnter: { // url: "", // avi: "", // fields: { @@ -19,28 +20,44 @@ export default function Partners() { if (Object.keys(PARTNERS).length) { return ( - {Object.keys(PARTNERS).map((partner) => ( - - ))} + + + {Object.keys(PARTNERS).map((partner) => ( + + ))} + + ); } else { return ( -

- Oh! It looks like I don't have any partners at the moment. -
- Oh well! -

+ +
+

+ Oh! It looks like I don't have any partners at the moment. +
+ Oh well! +

+
+
); diff --git a/src/info/pages/index.js b/src/info/pages/index.js index 96056b7..1177b0e 100644 --- a/src/info/pages/index.js +++ b/src/info/pages/index.js @@ -21,7 +21,7 @@ export default function Home() { extraClasses="" imageObj={{ src: "/emoji/18_plus.svg", alt: "Over 18" }} innerText="26" - url="" + url="/contacts" /> \ No newline at end of file diff --git a/src/info/public/emoji/crt.svg b/src/info/public/emoji/crt.svg deleted file mode 100644 index 7809967..0000000 --- a/src/info/public/emoji/crt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/info/public/emoji/eye_speech_bubble.svg b/src/info/public/emoji/eye_speech_bubble.svg deleted file mode 100644 index fa018ac..0000000 --- a/src/info/public/emoji/eye_speech_bubble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/info/public/emoji/spellbook.svg b/src/info/public/emoji/spellbook.svg deleted file mode 100644 index c5898e2..0000000 --- a/src/info/public/emoji/spellbook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/info/public/emoji/virgo.svg b/src/info/public/emoji/virgo.svg deleted file mode 100644 index 70107bf..0000000 --- a/src/info/public/emoji/virgo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/info/public/images/kyla.png b/src/info/public/images/kyla.png deleted file mode 100644 index f223b19..0000000 Binary files a/src/info/public/images/kyla.png and /dev/null differ