-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a66f588
commit dbb8abe
Showing
6 changed files
with
135 additions
and
35 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
<link rel="apple-touch-icon" href="mkLogo.png" /> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;700&display=swap" rel="stylesheet"> | ||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> | ||
|
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
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,31 +1,40 @@ | ||
export const nav = { | ||
"tr-TR" : { | ||
home : "Ana Sayfa", | ||
about : "Hakkımda", | ||
projects : "Projeler", | ||
contact : "İletişim" | ||
}, | ||
"en-US" : { | ||
home : "Home", | ||
about : "About", | ||
projects : "Projects", | ||
contact : "Contact" | ||
} | ||
export const nav = { | ||
"tr-TR": { | ||
home: "Ana Sayfa", | ||
about: "Hakkımda", | ||
projects: "Projeler", | ||
contact: "İletişim" | ||
}, | ||
"en-US": { | ||
home: "Home", | ||
about: "About", | ||
projects: "Projects", | ||
contact: "Contact" | ||
} | ||
} | ||
|
||
export const home = { | ||
"tr-TR" : { | ||
hii : "Merhaba, Ben Mücahit KÖKDEMİR", | ||
bio : "Türkiye'den tutkulu Jr. Frontend Developer ", | ||
learning : "Şuan React.js öğreniyorum", | ||
askMe : "Bana html,css,js,react,vue hakkında soru sorabilirsin.", | ||
reachMe : "Bana Mail yoluyla ulaşabilirsiniz" | ||
}, | ||
"en-US" : { | ||
hii : "Hi, I'm Mucahit KOKDEMIR", | ||
bio : "A passionate Jr. frontend developer from Turkey", | ||
learning : " I’m currently learning React.js", | ||
askMe : "Ask me about html,css,js,react,vue", | ||
reachMe : "You can reach me via Mail" | ||
} | ||
} | ||
export const home = { | ||
"tr-TR": { | ||
hii: "Merhaba, Ben Mücahit KÖKDEMİR", | ||
bio: "Türkiye'den tutkulu Jr. Frontend Developer ", | ||
learning: "Şuan React.js öğreniyorum", | ||
askMe: "Bana html,css,js,react,vue hakkında soru sorabilirsin.", | ||
reachMe: "Bana Mail yoluyla ulaşabilirsiniz" | ||
}, | ||
"en-US": { | ||
hii: "Hi, I'm Mucahit KOKDEMIR", | ||
bio: "A passionate Jr. frontend developer from Turkey", | ||
learning: " I’m currently learning React.js", | ||
askMe: "Ask me about html,css,js,react,vue", | ||
reachMe: "You can reach me via Mail" | ||
} | ||
} | ||
|
||
export const contact = { | ||
"tr-TR": { | ||
reachMe: "Bana ulaş" | ||
}, | ||
"en-US": { | ||
reachMe: "Reach me" | ||
} | ||
} |