-
Notifications
You must be signed in to change notification settings - Fork 87
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 #266 from BigBen-7/main
fix: clean up code, link routes, resize grid, and update global text … CLOSES #266
- Loading branch information
Showing
23 changed files
with
347 additions
and
405 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"cSpell.words": ["Dewordle", "landingpage"] | ||
} |
8 changes: 5 additions & 3 deletions
8
frontend/app/(auth)/forgotPassword/page.jsx → ...tend/app/(auth)/otp-verification/page.jsx
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,7 +1,9 @@ | ||
import OtpVerification from "../../../components/OtpVerification"; | ||
|
||
function ForgotPassword() { | ||
import React from "react"; | ||
|
||
const page = () => { | ||
return <OtpVerification />; | ||
} | ||
}; | ||
|
||
export default ForgotPassword; | ||
export default page; |
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,12 @@ | ||
import Achievements from "../../../components/Achievements" | ||
import React from "react"; | ||
import Achievements from "../../../components/Achievements"; | ||
|
||
<Achievements/> | ||
const page = () => { | ||
return ( | ||
<div> | ||
<Achievements /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default page; |
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
import DailyChallenge from "../../../components/DailyChallenge" | ||
import DailyChallenge from "../../../components/DailyChallenge"; | ||
|
||
<DailyChallenge /> | ||
import React from "react"; | ||
|
||
const page = () => { | ||
return ( | ||
<div> | ||
<DailyChallenge /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default page; |
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,13 +1,12 @@ | ||
import EditProfile from '../../../components/EditProfile' | ||
import React from 'react' | ||
// import EditProfile from '../../components/EditProfile' | ||
import React from "react"; | ||
import EditProfile from "../../../components/EditProfile"; | ||
|
||
const page = () => { | ||
return ( | ||
<div> | ||
<EditProfile /> | ||
<EditProfile /> | ||
</div> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default page | ||
export default page; |
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,13 +1,13 @@ | ||
"use client" | ||
import React from 'react' | ||
import ForgotPassword from "../../../components/ForgotPassword" | ||
"use client"; | ||
import React from "react"; | ||
import ForgotPassword from "../../../components/ForgotPassword"; | ||
|
||
const page = () => { | ||
return ( | ||
<div> | ||
<ForgotPassword /> | ||
</div> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default page | ||
export default page; |
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,2 +1,12 @@ | ||
import InteractiveHowToPlay from "../../../components/InteractiveHowToPlay" | ||
<InteractiveHowToPlay /> | ||
import React from "react"; | ||
import InteractiveHowToPlay from "../../../components/InteractiveHowToPlay"; | ||
|
||
const page = () => { | ||
return ( | ||
<div> | ||
<InteractiveHowToPlay /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default page; |
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 was deleted.
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
Oops, something went wrong.