├── .gitignore ├── .vscode └── settings.json ├── README.md ├── components.json ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── persian-calendar.json ├── shadcn.png └── window.svg ├── scripts └── build.ts ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── icon.png │ ├── layout.tsx │ └── page.tsx ├── components │ └── ui │ │ ├── button.tsx │ │ └── persian-calendar.tsx └── lib │ └── utils.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": ["shadcn"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/persian-calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/public/persian-calendar.json -------------------------------------------------------------------------------- /public/shadcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/public/shadcn.png -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/public/window.svg -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/src/app/icon.png -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/persian-calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/src/components/ui/persian-calendar.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MehhdiMarzban/shadcn-persian-calendar/HEAD/tsconfig.json --------------------------------------------------------------------------------