From ceb60923abc173ebf8e3fc878c20fc7f799c615a Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 14:16:27 +0000 Subject: [PATCH] Add src/components/sections/contact/ContactTwo.tsx --- .../sections/contact/ContactTwo.tsx | 85 +++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 src/components/sections/contact/ContactTwo.tsx diff --git a/src/components/sections/contact/ContactTwo.tsx b/src/components/sections/contact/ContactTwo.tsx new file mode 100644 index 0000000..f490a51 --- /dev/null +++ b/src/components/sections/contact/ContactTwo.tsx @@ -0,0 +1,85 @@ +import React from 'react'; +import { Mail, Phone, MapPin } from 'lucide-react'; + +const ContactTwo = () => { + return ( +
+
+
+

+ Get in Touch +

+

+ Ready to start your project? Contact us today. +

+
+
+
+
+
+ +
+

Email

+

hello@example.com

+
+
+
+ +
+

Phone

+

+1 (555) 123-4567

+
+
+
+ +
+

Address

+

123 Main St, City, State 12345

+
+
+
+
+
+
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
+
+ ); +}; + +export default ContactTwo; \ No newline at end of file