@@ -4,7 +4,7 @@ import { CONTACT_EMAIL } from "@/utils/constants";
44import { Image } from " astro:assets" ;
55---
66
7- <section id =" contactForm" class =" bg-background text-foreground " >
7+ <section id =" contactForm" class =" " >
88 <div class =" mx-auto max-w-7xl px-6 py-20 lg:px-10" >
99 <div class =" grid items-center gap-14 lg:grid-cols-2" >
1010 <!-- Left Content -->
@@ -13,32 +13,34 @@ import { Image } from "astro:assets";
1313
1414 <h2 class =" text-4xl font-bold leading-tight tracking-tight md:text-5xl" >Reach Recursive Zero</h2 >
1515
16- <p class =" text-foreground/70 mt-6 max-w-xl text-lg leading-8" >
16+ <p class =" mt-6 max-w-xl text-lg leading-8" >
1717 Tech simplified — Harness the power of modern technology with Recursive Zero. Send us a message and let’s
1818 build something impactful together.
1919 </p >
2020
2121 <!-- Contact Info -->
22- <div class =" text-foreground/70 mt-8 space-y-4" >
22+ <div class =" mt-8 space-y-4" >
2323 <!-- Email -->
2424 <div class =" text-lg" >
25- <span class =" text-foreground font-semibold" > Email: </span >
25+ <span class =" font-semibold" > Email: </span >
2626
27- <a href =`mailto:${CONTACT_EMAIL }` class =" ml-1 break-all text-blue-600 transition hover:underline" >
27+ <a
28+ href =`mailto:${CONTACT_EMAIL }`
29+ class =" ml-1 break-all italic text-blue-600 transition hover:underline dark:text-sky-500"
30+ >
2831 { CONTACT_EMAIL }
2932 </a >
3033 </div >
3134
3235 <!-- Phone (Not Clickable) -->
3336 <!-- Phone -->
3437 <!-- <div class="text-lg">
35- <span class="text-foreground font-semibold"> Phone: </span>
38+ <span class=" font-semibold"> Phone: </span>
3639 </div>-->
3740 <!-- Location -->
3841 <div class =" text-lg" >
39- <span class =" text-foreground font-semibold" > Location: </span >
40-
41- <span class =" text-foreground/70 ml-1" > Bengaluru, India </span >
42+ <span class =" font-semibold" > Location: </span >
43+ <span class =" ml-1" > Bengaluru, India </span >
4244 </div >
4345 </div >
4446
@@ -58,31 +60,31 @@ import { Image } from "astro:assets";
5860 </div >
5961
6062 <!-- Right Form -->
61- <div class =" border-foreground/10 bg-background/60 rounded-3xl border p-8 backdrop-blur-xl lg:p-10" >
62- <h3 class =" text-foreground text- 2xl font-bold" >Let's Talk</h3 >
63+ <div class =" rounded-3xl border p-8 backdrop-blur-xl lg:p-10" >
64+ <h3 class =" text-2xl font-bold" >Let's Talk</h3 >
6365
64- <p class =" text-foreground/60 mt-2" >Fill the form and we’ll get back to you shortly.</p >
66+ <p class =" mt-2" >Fill the form and we’ll get back to you shortly.</p >
6567
6668 <form class =" mt-8 space-y-5" >
6769 <!-- NAME -->
6870 <input
6971 type =" text"
7072 placeholder =" Full Name"
71- class =" border-foreground/10 dark:bg-background text-foreground placeholder:text-foreground/40 h-14 w-full rounded-xl border bg-white px-5 outline-none focus:border-cyan-500"
73+ class =" dark: placeholder: h-14 w-full rounded-xl border bg-white px-5 outline-none focus:border-cyan-500"
7274 />
7375
7476 <!-- EMAIL -->
7577 <input
7678 type =" email"
7779 placeholder =" Email Address"
78- class =" border-foreground/10 dark:bg-background text-foreground placeholder:text-foreground/40 h-14 w-full rounded-xl border bg-white px-5 outline-none focus:border-cyan-500"
80+ class =" dark: placeholder: h-14 w-full rounded-xl border bg-white px-5 outline-none focus:border-cyan-500"
7981 />
8082
8183 <!-- MESSAGE -->
8284 <textarea
8385 rows =" 5"
8486 placeholder =" Your Message"
85- class =" border-foreground/10 dark:bg-background text-foreground placeholder:text-foreground/40 w-full rounded-xl border bg-white px-5 py-4 outline-none focus:border-cyan-500"
87+ class =" dark: placeholder: w-full rounded-xl border bg-white px-5 py-4 outline-none focus:border-cyan-500"
8688 ></textarea >
8789
8890 <!-- BUTTON -->
0 commit comments