https://github.com/decepticon-ts/noeyes
https://github.com/decepticon-ts/noeyes
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/decepticon-ts/noeyes
- Owner: Decepticon-TS
- License: apache-2.0
- Created: 2024-12-11T11:40:03.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-12-12T04:56:17.000Z (10 months ago)
- Last Synced: 2025-03-24T03:32:18.435Z (7 months ago)
- Language: TypeScript
- Size: 124 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Project Structure
```
automated-task-frontend/
│
├── backend/
│ ├── user_act_sim/
| │ ├── __init__.py # Done
| │ ├── api_server.py # Done
| │ ├── config.py # Done
| │ ├── core_simulation.py # Done
│ │ └── input_simulation.py # Done
│ ├── main.py # Done
│ ├── readme.md # Done
│ └── requirements.txt # Done
├── src/app/
│ ├── (marketing)/
│ │ ├── layout.tsx # Needs to be implemented
│ │ ├── page.tsx # Done
│ │ └── service/page.tsx # Needs to be implemented
│ │
│ ├── (protected)/
│ │ ├── dashboard/page.tsx # Done
│ │ └── payments/page.tsx # Needs to be implemented
│ │
│ ├── api/
│ │ └── webhook/stripe/route.ts # Done
│ │
│ ├── page.tsx # Done
│ └── layout.tsx # Done
│
├── src/components/
│ ├── layout/
│ │ ├── Header.tsx # Done
│ │ └── Footer.tsx # Done
│ │
│ ├── dashboard/
│ │ ├── ServiceControls.tsx # Needs to be implemented
│ │ └── ServiceStatus.tsx # Needs to be implemented
│ │
│ ├── payments/
│ │ ├── PricingTiers.tsx # Needs to be implemented
│ │ └── SubscriptionButton.tsx # Needs to be implemented
│ │
│ └── ui/
│ ├── Button.tsx # Done
│ └── Card.tsx # Done
│
├── src/lib/
│ ├── api.ts # Done
│ ├── config.ts # Done
│ └── utils.ts # Done
│
├── src/hooks/
│ ├── useBackendService.ts # Done
│ └── useSubscription.ts # Done
│
├── public/
│ ├── images/
│ └── icons/
│
├── src/styles/
│ └── globals.css
│
├── package.json
├── tailwind.config.js
└── next.config.js```
install this using:
- npx create-next-app@latest [your project] --typescript
- npm install @clerk/nextjs
- npx shadcn init
- npm install axios
- npx shadcn add button
- npx shadcn add card
- npx shadcn add toast
- npm install @mui/material @emotion/react @emotion/styled