{"id":22382597,"url":"https://github.com/wavezync/next-tailwind-starter","last_synced_at":"2026-02-12T20:02:08.160Z","repository":{"id":229633854,"uuid":"651175000","full_name":"wavezync/next-tailwind-starter","owner":"wavezync","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-11T13:33:07.000Z","size":1497,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-30T15:51:18.102Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wavezync.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-06-08T17:00:58.000Z","updated_at":"2025-03-11T13:33:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"b1cde23e-1b0c-44b4-831d-e4b49a0ffba2","html_url":"https://github.com/wavezync/next-tailwind-starter","commit_stats":null,"previous_names":["wavezync/next-tailwind-starter"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/wavezync/next-tailwind-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavezync%2Fnext-tailwind-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavezync%2Fnext-tailwind-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavezync%2Fnext-tailwind-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavezync%2Fnext-tailwind-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wavezync","download_url":"https://codeload.github.com/wavezync/next-tailwind-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavezync%2Fnext-tailwind-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29379674,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T19:05:20.189Z","status":"ssl_error","status_checked_at":"2026-02-12T19:01:44.216Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-05T00:13:35.709Z","updated_at":"2026-02-12T20:02:08.144Z","avatar_url":"https://github.com/wavezync.png","language":"TypeScript","readme":"# WaveZync NextJS TailwindCSS StarterKit 🌊\n\nThis is a starter kit for NextJS with TailwindCSS. It includes a basic setup for a NextJS project with TailwindCSS and some common components and utilities.\n\n## Installation 🚀\n\n1. You need NodeJS 20+ installed on your machine.\n2. You also need to install [PNPM package manager](https://pnpm.io/installation).\n3. Run `pnpm install` to install the dependencies.\n4. Copy the `.env.example` file to `.env` and add the required environment variables.\n5. Run `pnpm dev` to start the development server.\n\n## Preparing VSCode 🤖\n\nThere are recommended extensions for VSCode that you can install to make development easier. You can find the recommended extensions in the `.vscode/extensions.json` file.\n\nVSCode will prompt you to install the recommended extensions when you open the project. You can also install them manually by clicking on the `Install All` button in the prompt.\n\n## Storybook 📚\n\nWe are using Storybook for building and testing components in isolation. To run Storybook, run `pnpm storybook`.\n\n## React Query 🎁\n\nPlease follow the key factory pattern for the query keys. This will help in maintaining the cache. For more information, check the [TkDodo's Blog](https://tkdodo.eu/blog/effective-react-query-keys#use-query-key-factories).\n\n## Installed Packages 📦\n\n- **[tanstack/query:](https://tanstack.com/query)** For data fetching and caching. Check the query key pattern to maintain the cache.\n- **[axios:](https://axios-http.com/docs/intro)** For making API requests.\n- **[react-hook-form:](https://react-hook-form.com/)** For form handling.\n- **[tailwindcss:](https://tailwindcss.com/)** For styling.\n- **[Radix UI:](https://www.radix-ui.com/)** For building accessible UI components.\n- **[Storybook:](https://storybook.js.org/)** For building and testing components in isolation.\n\n## Folder Structure 📁\n\n```bash\n.\n├── bin # Scripts\n├── public # Static files\n└── src # Source code\n    ├── @types # Typescript types\n    ├── components # Reusable components\n    │   ├── home # example Home page components(add more component folders as needed)\n    │   └── ui # UI components\n    │       ├── Button\n    │       ├── Forms\n    │       │   └── FormAlert\n    │       └── Input\n    ├── contexts # React Contexts and Providers with hooks\n    ├── hooks # Custom hooks\n    ├── layouts # Page layouts\n    ├── lib # Utility functions\n    │   ├── api # API functions\n    │   │   ├── @types # API types\n    │   │   └── products # Example API\n    │   │       └── hooks # API hooks with React Query\n    │   └── common # Common types and functions\n    ├── pages # NextJS pages\n    ├── styles # TailwindCSS styles\n    └── utils # Utility functions\n```\n\n## Favicons 🌟\n\nUse [https://realfavicongenerator.net/](https://realfavicongenerator.net/) to generate favicons and add them to the `public` folder.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavezync%2Fnext-tailwind-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwavezync%2Fnext-tailwind-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavezync%2Fnext-tailwind-starter/lists"}