Taleora is a modern web application built with React and Vite. It provides a platform for users to write, read, and manage stories or documents in an intuitive and visually appealing interface.
- Landing Page: Welcome users and introduce the platform.
- Library Page: Browse and manage a collection of stories or documents.
- Write Page: Create and edit new stories with a rich text editor.
- Responsive Design: Works seamlessly on desktop and mobile devices.
- Fast Development: Powered by Vite for lightning-fast builds and hot module replacement.
- Clone the repository:
git clone https://github.com/your-username/Taleora.git cd Taleora - Install dependencies:
npm install # or yarn install
Start the development server:
npm run dev
# or
yarn devOpen your browser and navigate to http://localhost:5173 (or the port shown in your terminal).
To build the app for production:
npm run build
# or
yarn buildThe output will be in the dist folder.
To lint the codebase:
npm run lint
# or
yarn lintTaleora/
├── public/ # Static assets
├── src/ # Source code
│ ├── App.jsx # Main app component
│ ├── LandingPage.jsx
│ ├── LibraryPage.jsx
│ ├── WritePage.jsx
│ ├── assets/ # Images and icons
│ └── ...
├── index.html # HTML template
├── package.json # Project metadata and scripts
├── vite.config.js # Vite configuration
└── ...
Contributions are welcome! Please open issues or submit pull requests for any improvements or bug fixes.
This project is licensed under the MIT License.