-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/Suraj-kumar00/Flash-Fathom-AI
- Loading branch information
Showing
3 changed files
with
77 additions
and
13 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,55 @@ | ||
## Description | ||
<!--Please include a summary of the changes made in this pull request. Mention any important details that the reviewers need to be aware of --> | ||
|
||
<br><br> | ||
|
||
## Issue Number | ||
Fixes:[#issue-number] <br> | ||
Closes:[#issue-number] | ||
|
||
<!-- Example: Fixes #1234 --> | ||
|
||
<br><br> | ||
|
||
## Changes Made | ||
<!-- List the main changes that you made: | ||
- Change 1 | ||
- Change 2 | ||
- Change 3 --> | ||
|
||
<br><br> | ||
|
||
## Type Of Change | ||
<!--Please mark the relevant options with an "x": --> | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] Documentation update | ||
|
||
## Screenshots or Videos | ||
<!-- If the changes include visual modifications, please add screenshots or videos to help understand the impact of the changes --> | ||
|
||
<br><br> | ||
|
||
## How Has This Been Tested? | ||
<!-- Please describe the tests you ran to verify your changes. Include any test configurations: | ||
- Test A | ||
- Test B --> | ||
|
||
<br><br> | ||
|
||
## Checklist | ||
<!-- Please mark the relevant options with an "x": --> | ||
- [ ] My code follows the style guidelines of this project | ||
- [ ] I have performed a self-review of my code | ||
- [ ] I have commented on my code, particularly in hard-to-understand areas | ||
- [ ] I have made corresponding changes to the documentation | ||
- [ ] My changes generate no new warnings | ||
- [ ] I have added tests that prove my fix is effective or that my feature works | ||
- [ ] New and existing unit tests pass locally with my changes | ||
|
||
## Additional Information | ||
<!-- Add any other context about the pull request here. --> | ||
|
||
<br><br> |
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,10 +1,9 @@ | ||
import Flashcard from "@/components/core/flash-card"; | ||
|
||
export default async function GeneratePage() { | ||
|
||
return ( | ||
<div className="page-container bg-slate-50"> | ||
<Flashcard /> | ||
</div> | ||
) | ||
} | ||
return ( | ||
<div className="page-container bg-slate-50 dark:bg-black"> | ||
<Flashcard /> | ||
</div> | ||
); | ||
} |
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