forked from yashksaini-coder/Leetcode-Journal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-section.tsx
32 lines (31 loc) · 1.04 KB
/
contact-section.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { Button } from "@/components/ui/button";
import { Mail, Phone } from "lucide-react";
export default function ContactSection() {
return (
<div className="mt-16 bg-white rounded-lg p-8 text-center">
<h2 className="text-2xl font-bold text-purple-800 mb-4">
Still have questions?
</h2>
<p className="text-purple-600 mb-6">
Our support team is here to help you
</p>
<div className="flex justify-center space-x-4 flex-row">
{/* Changed the alignment of buttons for small width devices */}
<Button
variant="outline"
className="flex items-center space-x-2 bg-white hover:bg-purple-300 text-black hover:text-black"
>
<Mail size={20} />
<span>Email Us</span>
</Button>
<Button
variant="outline"
className="flex items-center space-x-2 bg-white hover:bg-purple-300 text-black hover:text-black"
>
<Phone size={20} />
<span>Call Us</span>
</Button>
</div>
</div>
);
}