-
-
Notifications
You must be signed in to change notification settings - Fork 795
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
Showing
5 changed files
with
70 additions
and
132 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
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import { | ||
ClipboardCheckIcon, | ||
DiamondIcon, | ||
Edit3Icon, | ||
ListChecksIcon, | ||
} from 'lucide-react'; | ||
|
||
export const constants = { | ||
name: 'Noodle - Rethinking Student Productivity', | ||
shortName: 'Noodle', | ||
tagline: 'Rethinking Student Productivity', | ||
description: | ||
'Noodle is a productivity platform including many tools students need to be productive and stay on top of their work such as note taking, task management, and more.', | ||
twitter_handle: '@noodle_run', | ||
github_repo: 'https://github.com/noodle-run/noodle', | ||
domain: 'noodle.run', | ||
discord: 'https://discord.gg/ewKmQd8kYm', | ||
twitter: 'https://x.com/noodle_run', | ||
}; | ||
|
||
export const features = (iconSize: number) => [ | ||
{ | ||
icon: <Edit3Icon size={iconSize} />, | ||
title: 'Note Taking', | ||
description: 'Write your study notes and let Noodle take care of the rest.', | ||
}, | ||
{ | ||
icon: <DiamondIcon size={iconSize} />, | ||
title: 'Flashcards', | ||
description: | ||
'Create flashcards with reminders or let AI auto-suggest them for you.', | ||
}, | ||
{ | ||
icon: <ListChecksIcon size={iconSize} />, | ||
title: 'Task Management', | ||
description: | ||
'Create module specific tasks to keep on track with what you need to do.', | ||
}, | ||
{ | ||
icon: <ClipboardCheckIcon size={iconSize} />, | ||
title: 'Grade Tracking', | ||
description: 'Find out what you need to achieve to stay in progression.', | ||
}, | ||
]; |
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