landing footer

This commit is contained in:
Mikola
2024-04-17 18:58:39 +03:00
parent 7a55188904
commit 0d436e71e4
2 changed files with 7 additions and 74 deletions

View File

@ -2,6 +2,8 @@ import React from "react";
import SVG from "react-inlinesvg";
import { Link } from "react-router-dom";
import { Footer } from "@components/Common/Footer/Footer";
import arrow from "assets/icons/arrows/arrowLanding.svg";
import authIcon from "assets/icons/authIcon.svg";
import clue from "assets/icons/landingClue.svg";
@ -10,6 +12,7 @@ import vk from "assets/icons/vkIcon.svg";
import codeBg from "assets/images/landingBackgroundCode.svg";
import cat from "assets/images/landingCat.png";
import "./landing.scss";
export const Landing = () => {
@ -37,16 +40,7 @@ export const Landing = () => {
img: arrow
}
];
const socials = [
{
img: vk,
to: ""
},
{
img: telegram,
to: ""
}
];
return (
<section className="landing">
<div className="landing__container">
@ -106,26 +100,7 @@ export const Landing = () => {
);
})}
</div>
<div className="landing__footer">
<div className="footer__links">
<div className="footer__socials">
{socials.map((social, index) => {
return (
<Link to={social.to} key={index}>
<SVG src={social.img} />
</Link>
);
})}
</div>
<Link className="footer__invite" to="/auth">
Присоединиться к команде
</Link>
</div>
<div className="footer__info">
<p>office@itguild.info</p>
<p>© 2024 - Outstaffing. Все права защищены</p>
</div>
</div>
<Footer />
</div>
</section>
);