From 84e9873915a5ed53d924136bab53755f6a4c723f Mon Sep 17 00:00:00 2001 From: hamid zarghami Date: Sat, 12 Apr 2025 15:26:15 +0330 Subject: [PATCH] contact us desktio and reponsive --- src/app/contact/page.tsx | 97 +++++++++++++++++++++++++++++++++++++ src/app/globals.css | 4 ++ src/components/Textarea.tsx | 39 +++++++++++++++ 3 files changed, 140 insertions(+) create mode 100644 src/app/contact/page.tsx create mode 100644 src/components/Textarea.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..1d00e07 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,97 @@ +import Button from '@/components/Button' +import Input from '@/components/Input' +import Textarea from '@/components/Textarea' +import { CallCalling, Location, SmsTracking } from 'iconsax-react' +import { NextPage } from 'next' +import React from 'react' + +const Contact: NextPage = () => { + return ( +
+

+ تماس با ما +

+ +
+
+
+ شماره تماس +
+
+ +
+ ۰۲۱-۲۱۲۳۲۱۲۳ | ۰۸۶-۲۱۰۰۲۰۰۱ +
+
+ +
+ ایمیل +
+
+ +
+ info@danakcorp.com +
+
+ +
+ آدرس +
+
+ +
+ یوسف آباد، فتجی شقایق، پلاک ۵ ، واحد ۱۳ +
+
+
+ +
+
+ فرم تماس +
+ +
+ + +
+
+ + +
+ +
+ + + { + props.error_text && + + } + +
+ ) +} + +export default Textarea \ No newline at end of file