Skip to content

Commit

Permalink
NameAndLinks component for Profile page (#129)
Browse files Browse the repository at this point in the history
* NameAndLinks component for Profile page

* trying to pass the test

* updated snapshots

* added key to list

* temporarily commented contact out

* made some changes in contact

* updated yarn.lock

* updated import for Contact

Co-authored-by: allan <[email protected]>
  • Loading branch information
MahmoodElatiya and AllanSaleh authored Nov 23, 2022
1 parent a183b1d commit 04c3e3c
Show file tree
Hide file tree
Showing 45 changed files with 5,488 additions and 5,343 deletions.
1,236 changes: 618 additions & 618 deletions dist/output.css

Large diffs are not rendered by default.

108 changes: 54 additions & 54 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React Redux App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js">
</script>
<script type="text/javascript">
(function(){
emailjs.init("XLaQi2fl8od8a1zHc");
})();
</script>
<script src="https://kit.fontawesome.com/ee6989c844.js" crossorigin="anonymous"></script>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React Redux App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js">
</script>
<script type="text/javascript">
(function(){
emailjs.init("XLaQi2fl8od8a1zHc");
})();
</script>
<script src="https://kit.fontawesome.com/ee6989c844.js" crossorigin="anonymous"></script>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
58 changes: 29 additions & 29 deletions public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"tabWidth": 2,
"useTabs": false
}
{
"tabWidth": 2,
"useTabs": false
}
36 changes: 18 additions & 18 deletions src/Localize.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { useTranslation } from 'react-i18next';

const Localize = () => {
const { i18n } = useTranslation();
function changeLanguage(e) {
i18n.changeLanguage(e.target.value);


}

return(
<div className='footer'>
<button type="button" onClick={changeLanguage} value='en'>English</button>
<button type="button" onClick={changeLanguage} value='ar'>Kurdish</button>
</div>
)
}

import { useTranslation } from 'react-i18next';

const Localize = () => {
const { i18n } = useTranslation();
function changeLanguage(e) {
i18n.changeLanguage(e.target.value);


}

return(
<div className='footer'>
<button type="button" onClick={changeLanguage} value='en'>English</button>
<button type="button" onClick={changeLanguage} value='ar'>Kurdish</button>
</div>
)
}

export default Localize;
Loading

0 comments on commit 04c3e3c

Please sign in to comment.