Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
innovatixhub authored Nov 25, 2024
1 parent b112213 commit b97833c
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/componants/contact/Contact.jsx
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;
17 changes: 17 additions & 0 deletions src/componants/contact/Contact.module.scss
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;
}
}

0 comments on commit b97833c

Please sign in to comment.