diff --git a/src/components/ContactForm.astro b/src/components/ContactForm.astro index 90177f6..ca4b59f 100644 --- a/src/components/ContactForm.astro +++ b/src/components/ContactForm.astro @@ -21,23 +21,23 @@
- +
- +
- +
- +
diff --git a/src/images/people/sanjay.png b/src/images/people/sanjay.png new file mode 100644 index 0000000..9b82558 Binary files /dev/null and b/src/images/people/sanjay.png differ diff --git a/src/pages/team.astro b/src/pages/team.astro index 8866108..0825534 100644 --- a/src/pages/team.astro +++ b/src/pages/team.astro @@ -6,10 +6,11 @@ import Footer from '../components/Footer.astro'; //Component Imports import PersonCard from '../components/cards/PersonCard.astro'; import Tag from '/src/components/buttons/Tag.astro'; -import OutlineButton from '/src/components/buttons/OutlineButton.astro'; +// import OutlineButton from '/src/components/buttons/OutlineButton.astro'; //Image imports import Ram from '/src/images/people/ram.png'; import Anish from '/src/images/people/anish.jpg'; +import Sanjay from '/src/images/people/sanjay.png'; @@ -27,22 +28,30 @@ import Anish from '/src/images/people/anish.jpg';
- + - - + +
+ + + + + + + + @@ -85,11 +140,24 @@ import Anish from '/src/images/people/anish.jpg'; document.getElementById("engineering").addEventListener("click", function(){ document.getElementById("engineeringDiv").classList.toggle("hidden"); }); + // Lead Divs document.getElementById("lead").addEventListener("click", function(){ document.getElementById("leadDiv").classList.toggle("hidden"); }); + // Website Divs + document.getElementById("website").addEventListener("click", function(){ + document.getElementById("websiteDiv").classList.toggle("hidden"); + }); + + + + + + + + // Make buttons red on click for (var i = 0; i < buttons.length; i++) {