
-
diff --git a/src/components/Team.tsx b/src/components/Team.tsx
new file mode 100644
index 0000000..25ba8fd
--- /dev/null
+++ b/src/components/Team.tsx
@@ -0,0 +1,11 @@
+import CardSection from './CardSection';
+import TeamData from '../data/Team.json';
+
+
+function Team() {
+ return (
+
+ );
+}
+
+export default Team;
diff --git a/src/components/Projects.json b/src/data/Projects.json
similarity index 100%
rename from src/components/Projects.json
rename to src/data/Projects.json
diff --git a/src/data/Team.json b/src/data/Team.json
new file mode 100644
index 0000000..92c5ed3
--- /dev/null
+++ b/src/data/Team.json
@@ -0,0 +1,38 @@
+[
+ {
+ "name": "AtHeartEngineer",
+ "description": "Dev",
+ "links": [
+ {
+ "github": "https://github.com/atheartengineer"
+ },
+ {
+ "twitter": "https://twitter.com/atheartengineer"
+ }
+ ]
+ },
+ {
+ "name": "Person1",
+ "description": "Dev",
+ "links": [
+ {
+ "github": "https://github.com/atheartengineer"
+ },
+ {
+ "twitter": "https://twitter.com/atheartengineer"
+ }
+ ]
+ },
+ {
+ "name": "Person2",
+ "description": "Dev",
+ "links": [
+ {
+ "github": "https://github.com/atheartengineer"
+ },
+ {
+ "twitter": "https://twitter.com/atheartengineer"
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/src/index.css b/src/index.css
index 4eac46a..9eab190 100644
--- a/src/index.css
+++ b/src/index.css
@@ -25,7 +25,7 @@
}
.btn {
- color: black;
+ color: var(--gray);
font-weight: 500;
margin: 0.25rem;
border: 2px solid var(--gray);
@@ -52,7 +52,10 @@
}
body {
- color: black;
+ color: var(--gray);
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-rendering: optimizeLegibility;
background: var(--purple);
background-attachment: fixed;
height: 100vh;