Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/components/assets/images/facebook.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/components/assets/images/google.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/components/assets/images/pinterest.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions src/components/assets/images/twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/components/assets/images/vimeo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions src/components/assets/styles/sidemenu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,19 @@ a {
top: 5em;
}

.social-media {
position: absolute;
top: 88em;
left: 15px;
font-size: x-small;
font-weight: bolder;
}
.social-media > div {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}

.s-sidebar__nav ul {
position: absolute;
top: 10em;
Expand Down Expand Up @@ -115,6 +128,7 @@ a {

.s-sidebar__nav-link:hover {
background: #97bf0f;
color: white;
}

.s-sidebar__nav-link > i {
Expand Down
3 changes: 1 addition & 2 deletions src/components/assets/styles/swiper.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
height: 90%;
margin: auto;
z-index: 0;
display: flex;
}
// .blue{
// background-color: blue;
Expand All @@ -34,7 +35,6 @@
.vehicle-image-container {
border-radius: 60%;
width: 60vh;
background-color: #d3ece9;
height: 60vh;
display: flex;
align-items: center;
Expand Down Expand Up @@ -63,7 +63,6 @@
.vehicle-image-container {
border-radius: 60%;
width: 40vh;
background-color: #d3ece9;
height: 40vh;
display: flex;
align-items: center;
Expand Down
16 changes: 16 additions & 0 deletions src/components/layouts/sidemenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ import { useDispatch, useSelector } from 'react-redux';
import { BsFillArrowLeftSquareFill } from 'react-icons/bs';
import { NavLink, useNavigate } from 'react-router-dom';
import { logout } from '../../redux/user_reducer';
import { ReactComponent as FacebookIcon } from '../assets/images/facebook.svg';
import { ReactComponent as GoogleIcon } from '../assets/images/google.svg';
import { ReactComponent as PinterestIcon } from '../assets/images/pinterest.svg';
import { ReactComponent as VimeoIcon } from '../assets/images/vimeo.svg';
import { ReactComponent as TwitterIcon } from '../assets/images/twitter.svg';

const SideMenu = ({ children }) => {
const user = useSelector((state) => state.user);
const navigate = useNavigate();
Expand Down Expand Up @@ -58,6 +64,16 @@ const SideMenu = ({ children }) => {
</li>

</ul>
<div className="social-media">
<div>
<TwitterIcon />
<FacebookIcon />
<GoogleIcon />
<VimeoIcon />
<PinterestIcon />
</div>
<p>&copy; Copyrights. All rights reserved.</p>
</div>
</nav>
</div>
<main className="s-layout__content">
Expand Down