Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions amour-next-ts/src/app/contact/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -253,13 +253,13 @@ export default function Contact() {
<div className="grid grid-cols-1 lg:grid-cols-2 gap-16 items-start">
{/* Contact Form */}
<div data-aos="fade-right" data-aos-delay="200">
<div className="bg-white rounded-2xl shadow-xl border border-gray-100 p-8 lg:p-10">
<div className=" rounded-2xl shadow-xl border-3 border-amber-400 p-8 lg:p-10 backdrop-blur-md bg-white/70">
<div className="flex items-center mb-8">
<div className="bg-gradient-to-r from-amber-500 to-orange-600 p-3 rounded-xl">
<MessageSquare className="w-6 h-6 text-white" />
</div>
<div className="ml-4">
<h2 className="text-2xl font-bold text-gray-900">Send us a Message</h2>
<h2 className="text-4xl font-bold text-gray-900">Send us a Message</h2>
<p className="text-gray-600">We&apos;d love to hear from you</p>
</div>
</div>
Expand Down Expand Up @@ -399,8 +399,8 @@ export default function Contact() {

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