├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── bun.lockb ├── components.json ├── eslint.config.js ├── next.config.js ├── ogayoni.png ├── package.json ├── postcss.config.js ├── prettier.config.js ├── prisma ├── migrations │ ├── 20250331200931_init_changes │ │ └── migration.sql │ ├── 20250402162745_some │ │ └── migration.sql │ ├── 20250403041809_hmm │ │ └── migration.sql │ ├── 20250403065257_somenewchange │ │ └── migration.sql │ ├── 20250523022226_visitorlog │ │ └── migration.sql │ ├── 20250523022509_unique │ │ └── migration.sql │ ├── 20250525141610_added_device_type │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── favicon.ico ├── logo.svg ├── ogayoni.png └── tracker.js ├── src ├── actions │ └── index.ts ├── app │ ├── api │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ └── route.ts │ │ ├── collect │ │ │ └── route.ts │ │ ├── uploadthing │ │ │ ├── core.ts │ │ │ └── route.ts │ │ └── website │ │ │ ├── [id] │ │ │ └── route.ts │ │ │ └── route.ts │ ├── dashboard │ │ ├── [id] │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── _components │ │ │ ├── analytics-filter.tsx │ │ │ ├── analytics.tsx │ │ │ ├── create-website.tsx │ │ │ ├── delete-website.tsx │ │ │ ├── website-details.tsx │ │ │ └── website-list.tsx │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ └── page.tsx │ ├── layout.tsx │ └── page.tsx ├── components │ ├── Provider.tsx │ ├── add-toggle.tsx │ ├── app-sidebar.tsx │ ├── logo.tsx │ ├── nav-main.tsx │ ├── nav-projects.tsx │ ├── nav-user.tsx │ ├── team-switcher.tsx │ ├── theme-provider.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── landingnav.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── shape-landing-hero.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx ├── env.js ├── hooks │ └── use-mobile.ts ├── lib │ ├── constants.ts │ ├── extract-browser.tsx │ ├── schema.ts │ └── utils.ts ├── server │ ├── auth │ │ ├── config.ts │ │ └── index.ts │ ├── db.ts │ └── seed.ts ├── styles │ └── globals.css └── utils │ ├── getIP.ts │ ├── rate-limit.ts │ ├── redis.ts │ └── uploadthing.ts ├── start-database.sh └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/eslint.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/next.config.js -------------------------------------------------------------------------------- /ogayoni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/ogayoni.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/prettier.config.js -------------------------------------------------------------------------------- /prisma/migrations/20250331200931_init_changes/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/prisma/migrations/20250331200931_init_changes/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250402162745_some/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/prisma/migrations/20250402162745_some/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250403041809_hmm/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/prisma/migrations/20250403041809_hmm/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250403065257_somenewchange/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/prisma/migrations/20250403065257_somenewchange/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250523022226_visitorlog/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/prisma/migrations/20250523022226_visitorlog/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250523022509_unique/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/prisma/migrations/20250523022509_unique/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250525141610_added_device_type/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/prisma/migrations/20250525141610_added_device_type/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/ogayoni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/public/ogayoni.png -------------------------------------------------------------------------------- /public/tracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/public/tracker.js -------------------------------------------------------------------------------- /src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/actions/index.ts -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/collect/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/api/collect/route.ts -------------------------------------------------------------------------------- /src/app/api/uploadthing/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/api/uploadthing/core.ts -------------------------------------------------------------------------------- /src/app/api/uploadthing/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/api/uploadthing/route.ts -------------------------------------------------------------------------------- /src/app/api/website/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/api/website/[id]/route.ts -------------------------------------------------------------------------------- /src/app/api/website/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/api/website/route.ts -------------------------------------------------------------------------------- /src/app/dashboard/[id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/dashboard/[id]/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/dashboard/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/analytics-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/dashboard/_components/analytics-filter.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/dashboard/_components/analytics.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/create-website.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/dashboard/_components/create-website.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/delete-website.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/dashboard/_components/delete-website.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/website-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/dashboard/_components/website-details.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/website-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/dashboard/_components/website-list.tsx -------------------------------------------------------------------------------- /src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/dashboard/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/Provider.tsx -------------------------------------------------------------------------------- /src/components/add-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/add-toggle.tsx -------------------------------------------------------------------------------- /src/components/app-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/app-sidebar.tsx -------------------------------------------------------------------------------- /src/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/logo.tsx -------------------------------------------------------------------------------- /src/components/nav-main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/nav-main.tsx -------------------------------------------------------------------------------- /src/components/nav-projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/nav-projects.tsx -------------------------------------------------------------------------------- /src/components/nav-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/nav-user.tsx -------------------------------------------------------------------------------- /src/components/team-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/team-switcher.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/landingnav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/landingnav.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/shape-landing-hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/shape-landing-hero.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/env.js -------------------------------------------------------------------------------- /src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/lib/constants.ts -------------------------------------------------------------------------------- /src/lib/extract-browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/lib/extract-browser.tsx -------------------------------------------------------------------------------- /src/lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/lib/schema.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/server/auth/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/server/auth/config.ts -------------------------------------------------------------------------------- /src/server/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/server/auth/index.ts -------------------------------------------------------------------------------- /src/server/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/server/db.ts -------------------------------------------------------------------------------- /src/server/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/server/seed.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/utils/getIP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/utils/getIP.ts -------------------------------------------------------------------------------- /src/utils/rate-limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/utils/rate-limit.ts -------------------------------------------------------------------------------- /src/utils/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/utils/redis.ts -------------------------------------------------------------------------------- /src/utils/uploadthing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/src/utils/uploadthing.ts -------------------------------------------------------------------------------- /start-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/start-database.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronitrajfr/ayoni/HEAD/tsconfig.json --------------------------------------------------------------------------------