-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b112213
commit b97833c
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { Helmet } from "react-helmet-async"; | ||
import { useTranslation } from "react-i18next"; | ||
import useScrollOnMount from "src/Hooks/App/useScrollOnMount"; | ||
import PagesHistory from "../Shared/MiniComponents/PagesHistory/PagesHistory"; | ||
import s from "./Contact.module.scss"; | ||
import ContactCardInfo from "./ContactCardSection/ContactCardInfo"; | ||
import ContactForm from "./ContactForm/ContactForm"; | ||
|
||
const Contact = () => { | ||
const { t } = useTranslation(); | ||
|
||
useScrollOnMount(0); | ||
|
||
return ( | ||
<> | ||
<Helmet> | ||
<title>Contact</title> | ||
<meta | ||
name="description" | ||
content="Get in touch with Exclusive's customer support team for assistance with your orders, inquiries, or feedback. We're here to help you with any questions you may have." | ||
/> | ||
</Helmet> | ||
|
||
<div className="container"> | ||
<main className={s.contactPage}> | ||
<PagesHistory history={["/", t("nav.contact")]} /> | ||
|
||
<div className={s.contactContent} id="contact-page"> | ||
<ContactCardInfo /> | ||
<ContactForm /> | ||
</div> | ||
</main> | ||
</div> | ||
</> | ||
); | ||
}; | ||
export default Contact; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@import "src/Styles/mixins"; | ||
|
||
.contactPage { | ||
margin: 60px 0; | ||
} | ||
|
||
.contactContent { | ||
display: flex; | ||
gap: 30px; | ||
margin-top: 100px; | ||
} | ||
|
||
@include medium { | ||
.contactContent { | ||
flex-direction: column; | ||
} | ||
} |