Skip to content

Commit 6dd86d5

Browse files
authored
Merge pull request #157 from Peehu1308/main
Fix Contact Us page layout: margin alignment & improved structure with borders
2 parents f379177 + dd21683 commit 6dd86d5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

amour-next-ts/src/app/contact/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -253,13 +253,13 @@ export default function Contact() {
253253
<div className="grid grid-cols-1 lg:grid-cols-2 gap-16 items-start">
254254
{/* Contact Form */}
255255
<div data-aos="fade-right" data-aos-delay="200">
256-
<div className="bg-white rounded-2xl shadow-xl border border-gray-100 p-8 lg:p-10">
256+
<div className=" rounded-2xl shadow-xl border-3 border-amber-400 p-8 lg:p-10 backdrop-blur-md bg-white/70">
257257
<div className="flex items-center mb-8">
258258
<div className="bg-gradient-to-r from-amber-500 to-orange-600 p-3 rounded-xl">
259259
<MessageSquare className="w-6 h-6 text-white" />
260260
</div>
261261
<div className="ml-4">
262-
<h2 className="text-2xl font-bold text-gray-900">Send us a Message</h2>
262+
<h2 className="text-4xl font-bold text-gray-900">Send us a Message</h2>
263263
<p className="text-gray-600">We&apos;d love to hear from you</p>
264264
</div>
265265
</div>
@@ -399,8 +399,8 @@ export default function Contact() {
399399

400400
{/* Contact Information */}
401401
<div className="space-y-8" data-aos="fade-left" data-aos-delay="300">
402-
<div className="bg-white rounded-2xl p-8 border border-amber-100 dark:border-gray-700">
403-
<h2 className="text-2xl font-bold text-gray-900 mb-6">Let&apos;s Connect</h2>
402+
<div className="bg-white rounded-2xl p-8 border-3 border-amber-400 dark:border-gray-700">
403+
<h2 className="text-4xl font-bold text-gray-900 mb-6">Let&apos;s Connect</h2>
404404
<p className=" mb-8 leading-relaxed">
405405
Ready to transform your academic journey? Our expert team is here to help you craft
406406
compelling stories that open doors to your dream opportunities.
@@ -417,7 +417,7 @@ export default function Contact() {
417417
<div className={`inline-flex p-3 rounded-lg bg-gradient-to-r ${info.color} mb-4`}>
418418
<info.icon className="w-6 h-6 text-white" />
419419
</div>
420-
<h3 className="font-semibold text-gray-900 dark:text-white mb-2">{info.title}</h3>
420+
<h4 className="font-semibold text-gray-900 dark:text-white mb-2">{info.title}</h4>
421421
{info.details.map((detail, idx) => (
422422
<p key={idx} className="text-sm text-gray-600 dark:text-gray-300">{detail}</p>
423423
))}

0 commit comments

Comments
 (0)