File: /home/posscale/public_html/printmanager/resources/views/pages/contact.blade.php
<x-main-layout header="">
<style>
.gradient-bg { background: linear-gradient(135deg, #001a4d 0%, #003d99 100%); }
</style>
<section class="pt-20 pb-20 px-6 bg-gray-50 dark:bg-gray-900">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-16">
<h1 class="text-5xl font-bold text-gray-900 dark:text-white mb-4">Get in Touch</h1>
<p class="text-xl text-gray-600 dark:text-gray-400">We'd love to hear from you. Send us a message!</p>
</div>
<div class="grid md:grid-cols-3 gap-8 mb-12">
<div class="bg-white dark:bg-gray-800 p-8 rounded-lg shadow-lg">
<div class="w-12 h-12 bg-blue-100 dark:bg-blue-900 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-blue-900" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
</svg>
</div>
<h3 class="text-lg font-semibold text-gray-900 dark:text-white mb-2">Email</h3>
<p class="text-gray-600 dark:text-gray-400">support@managedprinters.com</p>
</div>
<div class="bg-white dark:bg-gray-800 p-8 rounded-lg shadow-lg">
<div class="w-12 h-12 bg-blue-100 dark:bg-blue-900 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-blue-900" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/>
</svg>
</div>
<h3 class="text-lg font-semibold text-gray-900 dark:text-white mb-2">Phone</h3>
<p class="text-gray-600 dark:text-gray-400">+1 (555) 123-4567</p>
</div>
<div class="bg-white dark:bg-gray-800 p-8 rounded-lg shadow-lg">
<div class="w-12 h-12 bg-blue-100 dark:bg-blue-900 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-blue-900" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"/>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"/>
</svg>
</div>
<h3 class="text-lg font-semibold text-gray-900 dark:text-white mb-2">Address</h3>
<p class="text-gray-600 dark:text-gray-400">123 Business St, Tech City, TC 12345</p>
</div>
</div>
<div class="bg-white dark:bg-gray-800 p-8 rounded-lg shadow-lg">
<h2 class="text-2xl font-bold text-gray-900 dark:text-white mb-6">Send us a Message</h2>
<form class="space-y-6">
<div class="grid md:grid-cols-2 gap-6">
<div>
<label class="block text-sm font-semibold text-gray-700 dark:text-gray-300 mb-2">Name</label>
<input type="text" placeholder="Your name" class="w-full px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-lg bg-white dark:bg-gray-700 text-gray-900 dark:text-white focus:ring-2 focus:ring-blue-900 transition">
</div>
<div>
<label class="block text-sm font-semibold text-gray-700 dark:text-gray-300 mb-2">Email</label>
<input type="email" placeholder="your@email.com" class="w-full px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-lg bg-white dark:bg-gray-700 text-gray-900 dark:text-white focus:ring-2 focus:ring-blue-900 transition">
</div>
</div>
<div>
<label class="block text-sm font-semibold text-gray-700 dark:text-gray-300 mb-2">Subject</label>
<input type="text" placeholder="How can we help?" class="w-full px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-lg bg-white dark:bg-gray-700 text-gray-900 dark:text-white focus:ring-2 focus:ring-blue-900 transition">
</div>
<div>
<label class="block text-sm font-semibold text-gray-700 dark:text-gray-300 mb-2">Message</label>
<textarea rows="5" placeholder="Your message..." class="w-full px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-lg bg-white dark:bg-gray-700 text-gray-900 dark:text-white focus:ring-2 focus:ring-blue-900 transition"></textarea>
</div>
<button type="submit" class="w-full bg-blue-900 text-white font-semibold py-3 px-6 rounded-lg hover:bg-blue-800 transition">Send Message</button>
</form>
</div>
</div>
</section>
</x-main-layout>