├── .env.example ├── .gitignore ├── README.md ├── app ├── (root) │ ├── (home) │ │ ├── loading.tsx │ │ └── page.tsx │ ├── layout.tsx │ ├── privacy │ │ └── page.tsx │ └── terms │ │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx └── studio │ └── [[...index]] │ └── page.tsx ├── components.json ├── components ├── Filters.tsx ├── Footer.tsx ├── Header.tsx ├── Navbar.tsx ├── ResourceCard.tsx ├── SearchForm.tsx └── ui │ ├── button.tsx │ ├── card.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ └── skeleton.tsx ├── lib └── utils.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── arrow-blue.svg ├── arrow_trail.svg ├── arrow_white.svg ├── downloads.svg ├── hamburger-menu.svg ├── jsm-logo.svg ├── jsm_resources_banner.svg ├── jsm_resources_banner.webp ├── logo.png ├── magnifying-glass.svg ├── next.svg └── vercel.svg ├── sanity.cli.ts ├── sanity.config.ts ├── sanity ├── actions.ts ├── env.ts ├── lib │ ├── client.ts │ └── image.ts ├── schemas │ ├── index.ts │ ├── resource-playlist.schema.ts │ └── resource.schema.ts └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | veena mam pdf 2 | -------------------------------------------------------------------------------- /app/(root)/(home)/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/app/(root)/(home)/loading.tsx -------------------------------------------------------------------------------- /app/(root)/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/app/(root)/(home)/page.tsx -------------------------------------------------------------------------------- /app/(root)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/app/(root)/layout.tsx -------------------------------------------------------------------------------- /app/(root)/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/app/(root)/privacy/page.tsx -------------------------------------------------------------------------------- /app/(root)/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/app/(root)/terms/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/studio/[[...index]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/app/studio/[[...index]]/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components.json -------------------------------------------------------------------------------- /components/Filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components/Filters.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /components/ResourceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components/ResourceCard.tsx -------------------------------------------------------------------------------- /components/SearchForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components/SearchForm.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/arrow-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/arrow-blue.svg -------------------------------------------------------------------------------- /public/arrow_trail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/arrow_trail.svg -------------------------------------------------------------------------------- /public/arrow_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/arrow_white.svg -------------------------------------------------------------------------------- /public/downloads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/downloads.svg -------------------------------------------------------------------------------- /public/hamburger-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/hamburger-menu.svg -------------------------------------------------------------------------------- /public/jsm-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/jsm-logo.svg -------------------------------------------------------------------------------- /public/jsm_resources_banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/jsm_resources_banner.svg -------------------------------------------------------------------------------- /public/jsm_resources_banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/jsm_resources_banner.webp -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/magnifying-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/magnifying-glass.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /sanity.cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/sanity.cli.ts -------------------------------------------------------------------------------- /sanity.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/sanity.config.ts -------------------------------------------------------------------------------- /sanity/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/sanity/actions.ts -------------------------------------------------------------------------------- /sanity/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/sanity/env.ts -------------------------------------------------------------------------------- /sanity/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/sanity/lib/client.ts -------------------------------------------------------------------------------- /sanity/lib/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/sanity/lib/image.ts -------------------------------------------------------------------------------- /sanity/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/sanity/schemas/index.ts -------------------------------------------------------------------------------- /sanity/schemas/resource-playlist.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/sanity/schemas/resource-playlist.schema.ts -------------------------------------------------------------------------------- /sanity/schemas/resource.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/sanity/schemas/resource.schema.ts -------------------------------------------------------------------------------- /sanity/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/sanity/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/V-Notes/HEAD/tsconfig.json --------------------------------------------------------------------------------