From ef64cb96944d72adb2e8e01628dcc51ebf23502a Mon Sep 17 00:00:00 2001 From: hamid zarghami Date: Thu, 27 Mar 2025 19:35:59 +0330 Subject: [PATCH] footer --- public/images/instagram.svg | 12 +++ public/images/linkedin.svg | 10 +++ public/images/telegram.svg | 10 +++ public/images/whatsapp.svg | 3 + src/app/globals.css | 4 + src/app/page.tsx | 3 + src/components/Error.tsx | 15 ++++ src/components/Input.tsx | 109 ++++++++++++++++++++++++++ src/shared/Footer.tsx | 148 ++++++++++++++++++++++++++++++++++++ 9 files changed, 314 insertions(+) create mode 100644 public/images/instagram.svg create mode 100644 public/images/linkedin.svg create mode 100644 public/images/telegram.svg create mode 100644 public/images/whatsapp.svg create mode 100644 src/components/Error.tsx create mode 100644 src/components/Input.tsx create mode 100644 src/shared/Footer.tsx diff --git a/public/images/instagram.svg b/public/images/instagram.svg new file mode 100644 index 0000000..e55a4f8 --- /dev/null +++ b/public/images/instagram.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/images/linkedin.svg b/public/images/linkedin.svg new file mode 100644 index 0000000..712bf64 --- /dev/null +++ b/public/images/linkedin.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/images/telegram.svg b/public/images/telegram.svg new file mode 100644 index 0000000..b13ac25 --- /dev/null +++ b/public/images/telegram.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/images/whatsapp.svg b/public/images/whatsapp.svg new file mode 100644 index 0000000..770403e --- /dev/null +++ b/public/images/whatsapp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/app/globals.css b/src/app/globals.css index 4c5bccb..3100edf 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -67,3 +67,7 @@ tbody tr { backdrop-filter: blur(44px); } + +.dltr { + direction: ltr; +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 862c654..ecfe395 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,6 +6,7 @@ import WhyDanak from './home/WhyDanak' import DanakServices from './home/DanakServices' import Blog from './home/Blog' import Collaboration from './home/Collaboration' +import Footer from '@/shared/Footer' const Home: NextPage = () => { return ( @@ -24,6 +25,8 @@ const Home: NextPage = () => { +