{"id":24771011,"url":"https://github.com/underprotectiondev/nextjs-folder-structure","last_synced_at":"2026-02-25T18:03:25.434Z","repository":{"id":274734380,"uuid":"910833455","full_name":"UnderprotectionDev/nextjs-folder-structure","owner":"UnderprotectionDev","description":"Next.js Folder Structure","archived":false,"fork":false,"pushed_at":"2025-02-18T17:18:07.000Z","size":99,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T18:54:08.341Z","etag":null,"topics":["folder-structure","next-js-folder-structure","nextjs","nextjs-folder","nextjs-folder-structure","nextjs15"],"latest_commit_sha":null,"homepage":"","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/UnderprotectionDev.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}},"created_at":"2025-01-01T15:17:34.000Z","updated_at":"2025-04-03T15:04:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"fbd8bf5e-5191-4cf8-9efb-0d87e98f009e","html_url":"https://github.com/UnderprotectionDev/nextjs-folder-structure","commit_stats":null,"previous_names":["underprotectiondev/nextjs-folder-structure"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/UnderprotectionDev/nextjs-folder-structure","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnderprotectionDev%2Fnextjs-folder-structure","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnderprotectionDev%2Fnextjs-folder-structure/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnderprotectionDev%2Fnextjs-folder-structure/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnderprotectionDev%2Fnextjs-folder-structure/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UnderprotectionDev","download_url":"https://codeload.github.com/UnderprotectionDev/nextjs-folder-structure/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnderprotectionDev%2Fnextjs-folder-structure/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29833683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T17:57:15.019Z","status":"ssl_error","status_checked_at":"2026-02-25T17:56:11.472Z","response_time":61,"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":["folder-structure","next-js-folder-structure","nextjs","nextjs-folder","nextjs-folder-structure","nextjs15"],"created_at":"2025-01-29T03:57:23.840Z","updated_at":"2026-02-25T18:03:25.418Z","avatar_url":"https://github.com/UnderprotectionDev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Next.js Project Structure\n\n```\n\n├── actions                     # Server-side actions for API routes\n├── app                         # Next.js App Router directory\n│   ├── (auth)                  # Group for private authentication routes\n│   │   ├── sign-in             # Sign-in page component\n│   │   └── sign-up             # Sign-up page component\n│   ├── (root)                  # Root group for the application\n│   │   ├── (home)              # Home routes under root\n│   │   │   ├── page.tsx        # Home page component\n│   │   │   └── layout.tsx      # Layout for home routes\n│   ├── api                     # API route handlers\n│   ├── favicon.ico             # Website favicon\n│   ├── layout.tsx              # Root layout component\n│   ├── loading.tsx             # Loading component for navigation\n│   └── not-found.tsx           # 404 page component\n├── components                  # Global components used throughout the app\n│   ├── common                  # Commonly used components (Header, Footer, etc.)\n│   ├── page-name               # Components specific to certain pages\n│   ├── shared                  # Reusable shared components\n│   └── ui                      # Shadcn/ui components like buttons and tags\n├── constants                   # Global constant values used in the app\n├── db                          # Database utilities and configurations\n│   ├── data.ts                 # Seed data for the database\n│   ├── prisma.ts               # Prisma client setup\n│   └── seed.ts                 # Database seeding scripts\n├── hooks                       # Custom React hooks for the app\n├── lib                         # Third-party libraries and utility functions\n│   └── utils.ts                # Utility functions for the app\n├── prisma                      # Prisma configuration and data model\n│   ├── schema.prisma           # Prisma schema defining the data model\n├── public                      # Static assets like images, fonts, and icons\n│   ├── fonts                   # Font files used in the app\n│   ├── gif                     # GIF files used in the app\n│   ├── icons                   # Icon files used in the app\n│   └── images                  # Image files used in the app\n├── styles                      # Global styles for the app\n│   └── globals.css             # Global CSS styles\n├── types                       # Global TypeScript type definitions\n├── utils                       # Additional utility functions\n├── validators                  # Zod schemas for data validation\n├── .env                        # Environment variables file\n├── .gitignore                  # Specifies files to ignore in Git\n├── components.json             # Configuration for components\n├── eslint.config.mjs           # ESLint configuration file\n├── middleware.ts               # Edge middleware for request handling\n├── next.config.ts              # Next.js configuration file\n├── package.json                # Project dependencies and scripts\n├── paths.ts                    # Route definitions for the app\n├── postcss.config.mjs          # PostCSS configuration file\n├── README.md                   # Project documentation and instructions\n├── tailwind.config.ts          # Tailwind CSS configuration file\n└── tsconfig.json               # TypeScript configuration file\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funderprotectiondev%2Fnextjs-folder-structure","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funderprotectiondev%2Fnextjs-folder-structure","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funderprotectiondev%2Fnextjs-folder-structure/lists"}