diff --git a/public/images/map.png b/public/images/map.png
new file mode 100644
index 0000000..d7b95ee
Binary files /dev/null and b/public/images/map.png differ
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..e1b7c4b
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,89 @@
+import Input from '@/components/Input'
+import { Textarea } from '@/components/ui/textarea'
+import { Button } from '@/components/ui/button'
+import Layout from '@/hoc/Layout'
+import { NextPage } from 'next'
+import Image from 'next/image'
+import { Call, Location, Sms } from 'iconsax-react'
+
+const ContactPage: NextPage = () => {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
دفتر مرکزی:
+
تهران، میدان امام خمینی، خیابان فردوسی، خیابان سرهنگ سخائی نبش کوچه بهنیا، پلاک 40، طبقه چهارم، واحد 12
+
+
+
+
+
+
+ )
+}
+
+export default ContactPage
\ No newline at end of file
diff --git a/src/app/home/components/LatestProducts.tsx b/src/app/home/components/LatestProducts.tsx
index e3f4c37..303c1ab 100644
--- a/src/app/home/components/LatestProducts.tsx
+++ b/src/app/home/components/LatestProducts.tsx
@@ -15,9 +15,6 @@ const NewestProducts: FC = () => {
const { data: landing } = useGetLanding()
- console.log('landing', landing?.results?.
- latestProducts);
-
return (
diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx
index 0db0ba8..27ab28f 100644
--- a/src/app/profile/page.tsx
+++ b/src/app/profile/page.tsx
@@ -33,7 +33,6 @@ const ProfilePage = () => {
const handleSubmit = () => {
// Handle form submission
setIsEditing(false)
- console.log('Form submitted:', userInfo)
}
return (
diff --git a/src/components/ui/textarea.tsx b/src/components/ui/textarea.tsx
new file mode 100644
index 0000000..7f21b5e
--- /dev/null
+++ b/src/components/ui/textarea.tsx
@@ -0,0 +1,18 @@
+import * as React from "react"
+
+import { cn } from "@/lib/utils"
+
+function Textarea({ className, ...props }: React.ComponentProps<"textarea">) {
+ return (
+
+ )
+}
+
+export { Textarea }