-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #226 from nepalcodes/bk-polish
Bk polish
- Loading branch information
Showing
10 changed files
with
118 additions
and
88 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import React from "react"; | ||
import Header from "@/components/header/Header"; | ||
|
||
const Credits: React.FC = () => { | ||
return ( | ||
<> | ||
<Header /> | ||
<div className="p-6 md:p-12 max-w-7xl mx-auto text-white"> | ||
<h1 className="text-4xl font-bold">Data Sources:</h1> | ||
<h1 className="text-4xl font-bold mb-6 text-center text-primary "> | ||
NepalBhasa.org | ||
</h1> | ||
<p className="mb-8 text-lg leading-relaxed text-center"> | ||
<a | ||
href="https://www.nepalbhasa.org/" | ||
className="text-blue-600 hover:underline" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
NepalBhasa.org | ||
</a> | ||
  is an online Newari Dictionary which managed by Daibuli, a | ||
US-based nonprofit organization who have kindly provided us with their | ||
backend API allowing us to retrieve more detailed data like images, | ||
audio, parts of speech and more. | ||
</p> | ||
|
||
<h1 className="text-4xl font-bold mb-6 text-center text-primary"> | ||
Google Translate | ||
</h1> | ||
<p className="mb-8 text-lg leading-relaxed text-center"> | ||
Google Translate API is used to power some of the more popular | ||
languages in Nepal including but not limited to Sanskrit, Nepali, and | ||
Maithli. | ||
</p> | ||
|
||
<h1 className="text-4xl font-bold mb-6 text-center text-primary"> | ||
Individual Contributers | ||
</h1> | ||
<p className="mb-8 text-lg leading-relaxed text-center"> | ||
Puja Tajpuriya has been a major contributer to all the Tajpuriya | ||
translations. <br /> | ||
We are looking for linguists! If you'd like to contribute to this | ||
project, please reach us via email: support at nepalingo dot com | ||
</p> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default Credits; |
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