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
+
+
+
+
+ آدرس
+
+
+
+
+ یوسف آباد، فتجی شقایق، پلاک ۵ ، واحد ۱۳
+
+
+
+
+
+
+
+ )
+}
+
+export default Contact
\ No newline at end of file
diff --git a/src/app/globals.css b/src/app/globals.css
index c4146f9..2da09a9 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -82,3 +82,7 @@ tbody tr {
#bc1888 100%
);
}
+
+.rowTwoInput {
+ @apply flex flex-col sm:flex-row sm:gap-5 gap-5;
+}
diff --git a/src/components/Textarea.tsx b/src/components/Textarea.tsx
new file mode 100644
index 0000000..2872f79
--- /dev/null
+++ b/src/components/Textarea.tsx
@@ -0,0 +1,39 @@
+import { FC, InputHTMLAttributes } from 'react'
+import Error from './Error'
+import { clx } from '../helpers/utils'
+
+type Props = {
+ label?: string,
+ error_text?: string
+} & InputHTMLAttributes
+
+const Textarea: FC = (props: Props) => {
+ return (
+
+ {
+ props.label &&
+
+ {props.label}
+
+ }
+
+
+
+ {
+ props.error_text &&
+
+ }
+
+
+ )
+}
+
+export default Textarea
\ No newline at end of file