diff --git a/src/components/Nav.astro b/src/components/Nav.astro
index 2694549..889125d 100644
--- a/src/components/Nav.astro
+++ b/src/components/Nav.astro
@@ -22,9 +22,10 @@ import OutlineButton from "../components/buttons/OutlineButton.astro";
@@ -119,5 +120,9 @@ import OutlineButton from "../components/buttons/OutlineButton.astro";
}
});
+
+
+
+
diff --git a/src/components/buttons/Tag.astro b/src/components/buttons/Tag.astro
new file mode 100644
index 0000000..3ded092
--- /dev/null
+++ b/src/components/buttons/Tag.astro
@@ -0,0 +1,7 @@
+---
+
+---
+
+
+ Text goes here
+
\ No newline at end of file
diff --git a/src/components/cards/PersonCard.astro b/src/components/cards/PersonCard.astro
new file mode 100644
index 0000000..858bc43
--- /dev/null
+++ b/src/components/cards/PersonCard.astro
@@ -0,0 +1,27 @@
+---
+//Variables
+var {name = "First", image = "/src/images/mountain.jpg"} = Astro.props;
+
+
+//Image imports
+
+import mountain from "/src/images/mountain.jpg"
+
+---
+
+
+
+
+
+
+

+
+
+
+
+
\ No newline at end of file
diff --git a/src/images/people/anish.jpg b/src/images/people/anish.jpg
new file mode 100644
index 0000000..d315859
Binary files /dev/null and b/src/images/people/anish.jpg differ
diff --git a/src/images/people/ram.png b/src/images/people/ram.png
new file mode 100644
index 0000000..096a8bf
Binary files /dev/null and b/src/images/people/ram.png differ
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index 93648ef..f83abe7 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -1,5 +1,5 @@
---
-var {title} = Astro.props;
+var {title} = Astro.props;
var backgroundColor = Astro.props;
---
@@ -9,7 +9,7 @@ var backgroundColor = Astro.props;
- {title}
+ Potentia Robotics {title}
diff --git a/src/pages/contact.astro b/src/pages/contact.astro
new file mode 100644
index 0000000..e0f7e82
--- /dev/null
+++ b/src/pages/contact.astro
@@ -0,0 +1,24 @@
+---
+//Layout imports
+import Layout from '../layouts/Layout.astro';
+import Nav from '../components/Nav.astro';
+import Footer from '../components/Footer.astro';
+//Component Imports
+
+//Image imports
+
+
+
+---
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 58105a0..57b4861 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -2,9 +2,9 @@
// Layout
import Layout from '../layouts/Layout.astro';
-// Components
import Nav from '../components/Nav.astro';
import Footer from '../components/Footer.astro';
+// Components
import Card from '../components/cards/Card.astro';
import TimelineCard from '../components/cards/TimelineCard.astro';
import Timeline from '../components/Timeline.astro';
@@ -74,13 +74,11 @@ import OutlineButton from '../components/buttons/OutlineButton.astro';
-
-
-
+
diff --git a/src/pages/olympian.astro b/src/pages/olympian.astro
new file mode 100644
index 0000000..9df7d9d
--- /dev/null
+++ b/src/pages/olympian.astro
@@ -0,0 +1,24 @@
+---
+//Layout imports
+import Layout from '../layouts/Layout.astro';
+import Nav from '../components/Nav.astro';
+import Footer from '../components/Footer.astro';
+//Component Imports
+
+//Image imports
+
+
+
+---
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/team.astro b/src/pages/team.astro
new file mode 100644
index 0000000..2bbb930
--- /dev/null
+++ b/src/pages/team.astro
@@ -0,0 +1,55 @@
+---
+//Layout imports
+import Layout from '../layouts/Layout.astro';
+import Nav from '../components/Nav.astro';
+import Footer from '../components/Footer.astro';
+//Component Imports
+import PersonCard from '../components/cards/PersonCard.astro';
+import Tag from '/src/components/buttons/Tag.astro';
+//Image imports
+import Ram from '/src/images/people/ram.png';
+import Anish from '/src/images/people/anish.jpg';
+
+
+
+---
+
+
+
+
+
+
+Meet our team
+
+
+
+
+
+
+
+ Hello my name is ram and I am from tech support.
+
+ Potentia Lead
+ Engineering
+ Gait Generation
+
+
+
+ Hello my name is anish and I trap kids in my basmeent.
+
+ Engineering
+ Computer Vision
+ Creepy
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file