generated from xkeshav/astro-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
2 changed files
with
82 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# Pages Documentation | ||
|
||
This document describes the functionality and purpose of each page in the application. | ||
|
||
## Main Pages | ||
|
||
### About Page (/pages/about.astro) | ||
|
||
- Simple about page explaining the purpose of the application | ||
- Contains a description of interactive games for kids | ||
- Includes help component explaining keyboard interaction | ||
|
||
### Blog Pages | ||
|
||
- **Index** (/pages/blog/index.astro): Lists all blog posts in a grid layout | ||
- **Blog Post** (/pages/blog/[slug].astro): Individual blog post template | ||
- **Blog Card** (/pages/blog/BlogCard.astro): Reusable component for blog previews | ||
|
||
### Interactive Learning Pages | ||
|
||
#### Varnmala Page (/pages/varnmala.astro) | ||
|
||
- Displays Hindi and English alphabets | ||
- Uses Alphabet component to render letter lists | ||
- Includes help section explaining the concept | ||
|
||
#### Typing Page (/pages/typing.astro) | ||
|
||
- Interactive typing practice | ||
- Shows letters, emojis, and spelling animations | ||
- Responds to keyboard input (A-Z) | ||
- Includes visual feedback | ||
|
||
#### Reader Page (/pages/reader.astro) | ||
|
||
- Text-to-speech functionality | ||
- Multiple speaker options (Mudra, Rutvi) | ||
- Audio control for alphabet pronunciation | ||
- Emoji display with letters | ||
|
||
#### Panel Page (/pages/panel.astro) | ||
|
||
- 3D rotating letter panel | ||
- Arrow key navigation | ||
- Custom HTML element (letter-panel) | ||
- Interactive letter display | ||
|
||
#### Hindi Page (/pages/hindi.astro) | ||
|
||
- Hindi alphabet practice | ||
- Color-changing letter display | ||
- Keyboard interaction | ||
- Visual feedback | ||
|
||
#### Record Page (/pages/record.astro) | ||
|
||
- Audio recording functionality | ||
- Visualization of audio input | ||
- Controls for record/pause/stop | ||
- Clip management with naming and deletion | ||
|
||
## Utility Pages | ||
|
||
### Error Page (/pages/404.astro) | ||
|
||
- Custom 404 error page | ||
- Simple navigation guidance | ||
|
||
### Legal Pages | ||
|
||
- **Terms** (/pages/terms.astro): Terms and conditions page | ||
- **Privacy** (/pages/privacy.astro): Privacy policy page | ||
|
||
## Common Features | ||
|
||
Most interactive pages include: | ||
|
||
- Help component with instructions | ||
- Keyboard interaction | ||
- Visual feedback | ||
- Consistent layout using BaseLayout |