Skip to content

Commit f5cd2b3

Browse files
committed
updated README.md
1 parent 5da215d commit f5cd2b3

16 files changed

Lines changed: 28 additions & 18 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<ol>
44
<li>Read whole Quran in organized way.</li>
5+
<li>Search and find any chapter or verse easily.</li>
56
<li>Find hundreds of translations for each verse.</li>
67
<li>Choose whichever translation[s] you want to see.</li>
78
<li>Enroll and Login.</li>

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<link
1111
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
1212
rel="stylesheet">
13-
<title>Translate Quran</title>
13+
<title>Scriptures</title>
1414
</head>
1515

1616
<body>

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/dummy-search-box/DummySearchBox.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const DummySearchBox = ({ setIsSearchModalOpen }) => {
1111
return (
1212
<div>
1313
<div onClick={handleInputClick}>
14-
<input readOnly placeholder="Search Quran" className="w-full h-10 rounded ring-1 ring-inset ring-cyan-950 placeholder:text-gray-600 pl-4"></input>
14+
<input readOnly placeholder="Search" className="w-full h-10 rounded ring-1 ring-inset ring-cyan-950 placeholder:text-gray-600 pl-4"></input>
1515
</div>
1616

1717
<div className="pl-1 text-xs text-cyan-950 flex items-center gap-2 mt-2">

src/data/CarouselData.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const carouselData = [
2-
"Translate Quran in Your Own Language",
2+
"Translate Scriptures in Your Own Language",
33
"Explore Hundreds of Translations for each verse"
44
// "Enjoy Productive Discussions"
55
]

src/pages/enroll/Enroll.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const Enroll = () => {
3838
const email = event.target.email.value;
3939
const password = event.target.password.value;
4040

41-
const server = import.meta.env.SERVER;
41+
const server = import.meta.env.VITE_SERVER;
4242

4343
axios.post(`${server}/users/register`,
4444
{

src/pages/home/home/Home.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ const Home = () => {
1111
<div className="">
1212

1313
<Helmet>
14-
<title>Home ~ Translate Quran</title>
14+
<title>Home ~ Scriptures</title>
1515

16-
<meta name="description" content="Al Quran Translation Project Home Page" />
16+
<meta name="description" content="Scriptures Home Page" />
1717

1818
<meta name="keyword" content="quran, quran translation, quran chapter, surah" />
1919
</Helmet>

src/pages/login/Login.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const Login = () => {
3737
const email = event.target.email.value;
3838
const password = event.target.password.value;
3939

40-
const server = import.meta.env.SERVER;
40+
const server = import.meta.env.VITE_SERVER;
4141

4242
axios.post(`${server}/users/login`,
4343
{

src/pages/surah/surah-content/verse-component/translation-input-box/TranslationInputBox.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const TranslationInputBox = ({ verse_key, setRefreshKey }) => {
2626

2727
const { setSuccessMsg, setErrorMsg } = useContext(MsgContext);
2828

29-
const server = import.meta.env.SERVER;
29+
const server = import.meta.env.VITE_SERVER;
3030

3131
const handleSubmit = (e) => {
3232
e.preventDefault();

src/pages/surah/surah-content/verse-component/users-translations/UsersTranslationAccordion.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ export default function UsersTranslationAccordion({ translations }) {
99
const data = [
1010
{ title: "Users' Translation Available" },
1111
];
12+
13+
1214
return (
1315
<div className="mb-4">
1416
{data?.map((data, idx) => (

0 commit comments

Comments
 (0)