@@ -5,9 +5,30 @@ pub fn Home() -> impl IntoView {
55 view ! {
66 <style>
77 "
8- .about { border: 2px solid var(--mauve); }
9- .about h2 { color: var(--mauve); margin: 0 0 1.5rem 0; text-align: center; font-size: 1.8rem; }
8+ .about { border: 2px solid var(--mauve);text-align: center }
9+ .about h2 { color: var(--mauve); margin: 0 0 1.5rem 0; text-align: center; font-size: 1.8rem; text-align: center }
1010 .about-text { font-size: 1.15rem; line-height: 1.7; max-width: 750px; margin: 0 auto; text-align: center; }
11+ /* Social Buttons Styling */
12+ .socials-container {
13+ display: flex;
14+ justify-content: center;
15+ gap: 1rem;
16+ margin-top: 2rem;
17+ flex-wrap: wrap;
18+ }
19+ /* New lead-in text styling */
20+ .reach-me {
21+ text-align: center;
22+ margin-top: 2.5rem;
23+ margin-bottom: 1rem;
24+ color: var(--subtext);
25+ font-size: 1.1rem;
26+ font-weight: bold;
27+ }
28+ /* Custom hover colors for each platform */
29+ .social-btn.email:hover { border-color: var(--red); color: var(--red); }
30+ .social-btn.github:hover { border-color: var(--mauve); color: var(--mauve); }
31+ .social-btn.linkedin:hover { border-color: var(--green); color: var(--green); }
1132 "
1233 </style>
1334 <section class="card about" >
@@ -16,6 +37,25 @@ pub fn Home() -> impl IntoView {
1637 <p>"Hi! I like to build backend systems, write memory-safe code for embedded devices, and develop flight software for rockets!" </p>
1738 <p>"Currently architecting hybrid rocket avionics and pushing for Rust adoption in aerospace environments. 🎀" </p>
1839 </div>
40+ <div class="reach-me" >
41+ <h3>"Here is how you can reach me :) " </h3>
42+ </div>
43+ <div class="socials-container" >
44+
45+ <a href="mailto:sofia.vazquez.duarte@tecnico.ulisboa.pt" class="social-btn email" >
46+ "Email"
47+ </a>
48+ <a href="https://github.com/sofiavldd2005" target="_blank" rel="noopener noreferrer" class="social-btn github" >
49+ "GitHub"
50+ </a>
51+ <a href="https://www.linkedin.com/in/sofia-duarte-2528682a1" target="_blank" rel="noopener noreferrer" class="social-btn linkedin" >
52+ "LinkedIn"
53+ </a>
54+ </div>
1955 </section>
56+ <div class="built-with" >
57+ "Built with 💖 and "
58+ <a href="https://leptos.dev/" target="_blank" rel="noopener noreferrer" >"Leptos" </a>
59+ </div>
2060 }
2161}
0 commit comments