Skip to content

Commit

Permalink
Added readme docs for Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciphrox committed Jan 30, 2025
1 parent 37b8a5f commit eecff84
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Inside of your Astro project, you'll see the following folders and files:
├── components.json
├── docs
│   ├── README.md
│   └── state-management.md
│   └── pages.md # Documentation for all pages and their functionality
├── jsconfig.json
├── LICENSE
├── package.json
Expand Down
81 changes: 81 additions & 0 deletions docs/pages.md
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

0 comments on commit eecff84

Please sign in to comment.