diff --git a/components/common/NavBar.tsx b/components/common/NavBar.tsx
index 01a3d52..89f6f4f 100644
--- a/components/common/NavBar.tsx
+++ b/components/common/NavBar.tsx
@@ -40,7 +40,7 @@ function NavBar({ options }: NavProps) {
const [isActive, setActive] = useState(false);
return (
},
- { content: },
+ // { content: },
{ content: },
- { content: },
+ // { content: },
];
export { type NavTemplate, homeMain };
diff --git a/pages/team.tsx b/pages/team.tsx
index 686ad63..d65c784 100644
--- a/pages/team.tsx
+++ b/pages/team.tsx
@@ -1,4 +1,6 @@
+import { m, Variants } from "framer-motion";
import Head from "next/head";
+import Image from "next/image";
import { ReactElement } from "react";
import HomeLayout from "../layouts/HomeLayout";
import { homeMain } from "../layouts/NavTemplates";
@@ -10,12 +12,124 @@ function Team() {
Team - InvestBot
-
Team
+
+
+ people
+
+ {/* Person 1 */}
+
+ TBW
+
+ {/* Person 2 */}
+
+ TBW
+ {/* Person 3 */}
+
+ TBW
+ {/* Person 4 */}
+
+ TBW
+ {/* Person 5 */}
+
+ TBW
+
>
);
}
+const PersonLeftCard = (props: { name: string; img: string }) => {
+ return (
+
+
+
+ {props.name}
+
+
+ );
+};
+
+// takes in children
+const PersonRightCard = (props: { children: React.ReactNode }) => {
+ return (
+
+ {props.children}
+
+ );
+};
+
+const containerVariants: Variants = {
+ initial: {
+ opacity: 1,
+ },
+ animate: {
+ opacity: 1,
+ transition: {
+ duration: 2,
+ delayChildren: 0.5,
+ staggerChildren: 0.25,
+ },
+ },
+};
+
+const leftCardVariants: Variants = {
+ initial: {
+ opacity: 0,
+ x: 100,
+ },
+ animate: {
+ opacity: 1,
+ x: 0,
+ },
+};
+
+const rightCardVariants: Variants = {
+ initial: {
+ opacity: 0,
+ x: -100,
+ },
+ animate: {
+ opacity: 1,
+ x: 0,
+ },
+};
+
Team.getLayout = function getLayout(page: ReactElement) {
return {page};
};
diff --git a/public/img/team/ente.webp b/public/img/team/ente.webp
new file mode 100644
index 0000000..b61610a
Binary files /dev/null and b/public/img/team/ente.webp differ
diff --git a/public/img/team/force.webp b/public/img/team/force.webp
new file mode 100644
index 0000000..72495ad
Binary files /dev/null and b/public/img/team/force.webp differ
diff --git a/public/img/team/oh.webp b/public/img/team/oh.webp
new file mode 100644
index 0000000..4f944ee
Binary files /dev/null and b/public/img/team/oh.webp differ
diff --git a/public/img/team/sock.webp b/public/img/team/sock.webp
new file mode 100644
index 0000000..1594ac2
Binary files /dev/null and b/public/img/team/sock.webp differ
diff --git a/public/img/team/zach.webp b/public/img/team/zach.webp
new file mode 100644
index 0000000..4998b09
Binary files /dev/null and b/public/img/team/zach.webp differ