diff --git a/src/components/Team.astro b/src/components/Team.astro index 4eb3c94..f2424af 100644 --- a/src/components/Team.astro +++ b/src/components/Team.astro @@ -4,7 +4,7 @@ const teamMembers = [ name: "Saumil", role: "Founder", image: "https://cloud-k1zq3nx08-hack-club-bot.vercel.app/0saumil.jpeg", - description: "Experienced iOS dev. Decent photographer.", + description: "Experienced iOS dev, decent photographer.", github: "https://github.com/saumilthecode", linkedin: "https://www.linkedin.com/in/saumil707/", youtube: "" @@ -22,7 +22,7 @@ const teamMembers = [ name: "Daivik", role: "Co-Founder", image: "https://cloud-dq52iggbr-hack-club-bot.vercel.app/0bigfatass.jpeg", - description: "iOS dev. YouTuber.", + description: "iOS dev, YouTuber.", github: "https://github.com/gz56", linkedin: "", youtube: "https://www.youtube.com/@realgz56yt2" @@ -44,9 +44,10 @@ const teamMembers = [
-

Our Team

+

Our Team

+
-
we think we know what we're doing
+
we think we know what we're doing
{teamMembers.map((member) => (
@@ -95,7 +96,7 @@ const teamMembers = [ } .team-member { max-width: 200px; - padding: 1rem; + padding: 0.4rem; border-radius: 8px; box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); text-align: center; @@ -133,16 +134,25 @@ const teamMembers = [ .youtube { background-color: #ff0000; } */ /* Responsive adjustments */ - @media (max-width: 768px) { + @media (max-width: 768px) { + .team { + padding: 1rem; /* Reduce side padding */ + } + .team-grid { - gap: 1rem; + gap: 0.5rem; /* Adjust grid gap for a tighter layout */ } + .team-member { max-width: 150px; } + .description { font-size: 0.8rem; + max-width: 125px; + line-height: 1.5em; } + .social-btn { font-size: 1rem; padding: 0.4rem; diff --git a/src/components/core/navmenue.astro b/src/components/core/navmenue.astro index 1893a62..e7a8a1e 100644 --- a/src/components/core/navmenue.astro +++ b/src/components/core/navmenue.astro @@ -5,28 +5,27 @@ import { MenuIcon, X } from "lucide-react"; ---