-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- change domain to awesome-cv.space and all related files
- added description in the footer section - readme.md changes
- Loading branch information
mev
authored and
mev
committed
Mar 8, 2024
1 parent
ca7ebd2
commit 7971ab8
Showing
6 changed files
with
52 additions
and
20 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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
User-Agent: * | ||
Allow: / | ||
Sitemap: https://cv.example.by/sitemap.xml | ||
Sitemap: /sitemap.xml |
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 |
---|---|---|
@@ -1,6 +1,29 @@ | ||
.footer { | ||
position: relative; | ||
|
||
@media only screen and (max-width: 768px) { | ||
padding-bottom: 2rem; | ||
} | ||
|
||
#openModal { | ||
border-bottom-left-radius: 0; | ||
border-bottom-right-radius: 0; | ||
|
||
@media only screen and (max-width: 768px) { | ||
border-radius: 8px; | ||
} | ||
} | ||
|
||
#postScriptum { | ||
position: absolute; | ||
bottom: 0; | ||
right: 0; | ||
font-size: 0.8rem; | ||
|
||
a { | ||
padding: 0.2rem; | ||
text-decoration: underline; | ||
color: #0070E0; | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,22 +1,31 @@ | ||
import * as React from 'react'; | ||
import { useState } from 'react'; | ||
import {useState} from 'react'; | ||
import 'src/components/Footer/Footer.scss'; | ||
import Modal from 'src/components/Modal/Modal'; | ||
import {Link} from "react-router-dom"; | ||
|
||
interface Props {} | ||
interface Props { | ||
} | ||
|
||
const Footer: React.FunctionComponent<Props> = () => { | ||
const [showModal, setShoModal] = useState<boolean>(false); | ||
return ( | ||
<section className="section footer do-not-print"> | ||
<button id="openModal" onClick={() => setShoModal(true)}> | ||
Click me to show modal | ||
</button> | ||
<Modal handleClose={() => setShoModal(false)} isOpen={showModal}> | ||
<p>Some interest info</p> | ||
</Modal> | ||
</section> | ||
); | ||
const [showModal, setShoModal] = useState<boolean>(false); | ||
return ( | ||
<section className="section footer do-not-print"> | ||
<button id="openModal" onClick={() => setShoModal(true)}> | ||
Click me to show modal | ||
</button> | ||
<Modal handleClose={() => setShoModal(false)} isOpen={showModal}> | ||
<p>Some interest info</p> | ||
</Modal> | ||
|
||
<div className="do-not-print" id="postScriptum"> | ||
**this page based on | ||
<Link to="https://github.com/agm1n/awesome-cv-builder" target="_blank"> | ||
own library | ||
</Link> | ||
</div> | ||
</section> | ||
); | ||
}; | ||
|
||
export default Footer; |
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 |
---|---|---|
|
@@ -5,11 +5,11 @@ | |
"linkedin": "sqwertynski", | ||
"facebook": "", | ||
"telegram": "cv_example_by", | ||
"instagram": "sqwertynski", | ||
"instagram": "", | ||
"twitter": "by_agm1n", | ||
"email": "[email protected]", | ||
"github": "agm1n", | ||
"web": "cv.example.by", | ||
"web": "awesome-cv.space", | ||
"phone": "" | ||
}, | ||
"summary": [ | ||
|
@@ -30,7 +30,7 @@ | |
"environment": "Nodejs, React, Express, Typeorm, Redux, Typescript, Docker, Less, Postgres, Mongo, Sentry, Jest, Eslint, i18next, Axios, Swagger", | ||
"responsibilities": [ | ||
"Creating platform and CI/CD implementation", | ||
"Signing, mail sending, real living services and other third-party services integration for business", | ||
"Signing, mail sending, real living services and other 3rd party API integrations for business", | ||
"AWS Lambda and step functions implementation", | ||
"Github actions and JIRA connect to CI/CD process", | ||
"PDF generating as AWS lambda based on puppeteer and mustache libraries" | ||
|
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