From 97b483cf60a9d00f387b16984c132b567d40629c Mon Sep 17 00:00:00 2001 From: mahdi Date: Mon, 25 Apr 2022 16:26:32 +0430 Subject: [PATCH] update App.js --- src/App.js | 4 +++- .../ContactUsInfoCard/images/logo-rectangle.svg | 3 +++ src/components/ContactUsInfoCard/images/map.svg | 8 ++++++++ src/components/ContactUsInfoCard/images/marker.svg | 9 +++++++++ src/components/ContactUsInfoCard/images/phone.svg | 12 ++++++++++++ src/components/ContactUsInfoCard/index.js | 7 +++++++ 6 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 src/components/ContactUsInfoCard/images/logo-rectangle.svg create mode 100644 src/components/ContactUsInfoCard/images/map.svg create mode 100644 src/components/ContactUsInfoCard/images/marker.svg create mode 100644 src/components/ContactUsInfoCard/images/phone.svg create mode 100644 src/components/ContactUsInfoCard/index.js diff --git a/src/App.js b/src/App.js index 6786980..b2e959c 100644 --- a/src/App.js +++ b/src/App.js @@ -94,6 +94,7 @@ import CurrentDateShamsi from "./components/CurrentDateShamsi"; import DateTime from "./components/DateTime"; import CardDesign3 from "./components/CardDesign3"; import CustomToast2 from "./components/CustomToast2"; +import ContactUsInfoCard from "./components/ContactUsInfoCard"; function App() { return ( @@ -146,7 +147,8 @@ function App() { {/* */} {/* */} {/* */} - + {/* */} + {/* */} {/* *************************************************** mini components *************************************************** */} diff --git a/src/components/ContactUsInfoCard/images/logo-rectangle.svg b/src/components/ContactUsInfoCard/images/logo-rectangle.svg new file mode 100644 index 0000000..9d6384a --- /dev/null +++ b/src/components/ContactUsInfoCard/images/logo-rectangle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/ContactUsInfoCard/images/map.svg b/src/components/ContactUsInfoCard/images/map.svg new file mode 100644 index 0000000..d862c17 --- /dev/null +++ b/src/components/ContactUsInfoCard/images/map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/components/ContactUsInfoCard/images/marker.svg b/src/components/ContactUsInfoCard/images/marker.svg new file mode 100644 index 0000000..f38c06b --- /dev/null +++ b/src/components/ContactUsInfoCard/images/marker.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/components/ContactUsInfoCard/images/phone.svg b/src/components/ContactUsInfoCard/images/phone.svg new file mode 100644 index 0000000..ebfb7ba --- /dev/null +++ b/src/components/ContactUsInfoCard/images/phone.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/components/ContactUsInfoCard/index.js b/src/components/ContactUsInfoCard/index.js new file mode 100644 index 0000000..fbede0c --- /dev/null +++ b/src/components/ContactUsInfoCard/index.js @@ -0,0 +1,7 @@ +import React from "react"; + +const ContactUsInfoCard = () => { + return
ContactUsInfoCard
; +}; + +export default ContactUsInfoCard;