https://github.com/denimar/stacktalk
https://github.com/denimar/stacktalk
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/denimar/stacktalk
- Owner: denimar
- Created: 2026-03-18T22:48:24.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2026-03-19T13:03:58.000Z (4 months ago)
- Last Synced: 2026-03-19T15:34:47.842Z (4 months ago)
- Language: TypeScript
- Size: 2.24 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stacktalk
A conversational webapp builder where AI agents turn your ideas into fully functional applications — through natural dialogue, structured task management, and real-time collaboration.
Built with Next.js 16, React 19, and TypeScript.
## Tech Stack
- **Framework:** [Next.js 16](https://nextjs.org) (App Router)
- **UI:** [React 19](https://react.dev)
- **Language:** [TypeScript 5](https://www.typescriptlang.org)
- **Styling:** [Tailwind CSS 4](https://tailwindcss.com)
- **Linting:** [ESLint 9](https://eslint.org)
## Getting Started
### Prerequisites
- Node.js 18+
- npm
### Installation
```bash
npm install
```
### Development
```bash
npm run dev
```
Open [http://localhost:3000](http://localhost:3000) in your browser.
### Build
```bash
npm run build
npm run start
```
### Lint
```bash
npm run lint
```
## Project Structure
```
src/
└── app/ # App Router pages and layouts
├── layout.tsx # Root layout
├── page.tsx # Home page
└── globals.css # Global styles and Tailwind config
public/ # Static assets
```
-