├── .eslintignore ├── .eslintrc.js ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .vercelignore ├── Cargo.toml ├── README.md ├── SECURITY.md ├── app ├── about │ └── page.tsx ├── account │ ├── account-form.tsx │ ├── avatar.tsx │ ├── page.tsx │ └── supa-account-form.tsx ├── api │ ├── auth │ │ ├── callback │ │ │ └── route.ts │ │ └── google │ │ │ └── route.ts │ ├── handler.rs │ ├── send │ │ └── route.ts │ └── sid │ │ └── callback │ │ └── route.tsx ├── auth-server-action │ ├── actions │ │ ├── actions.tsx │ │ └── index.ts │ ├── components │ │ ├── AuthFormLegacy.tsx │ │ ├── OAuthForm.tsx │ │ ├── RegisterForm.tsx │ │ └── SignInForm.tsx │ └── page.tsx ├── auth │ ├── actions │ │ └── index.tsx │ ├── callback │ │ └── route.ts │ ├── components │ │ ├── AuthForm.tsx │ │ └── user-auth-form.tsx │ ├── confirm │ │ └── route.ts │ ├── page.tsx │ └── signout │ │ └── route.ts ├── blog │ ├── layout.tsx │ └── page.mdx ├── confirmation │ ├── loading.tsx │ └── page.tsx ├── contact │ ├── actions │ │ └── index.tsx │ └── page.tsx ├── countries │ └── [id] │ │ └── page.tsx ├── dashboard │ ├── (dashboard) │ │ └── page.tsx │ ├── components │ │ ├── MobileSideNav.tsx │ │ ├── NavLinks.tsx │ │ ├── SideNav.tsx │ │ ├── SignOut.tsx │ │ ├── ToggleSidebar.tsx │ │ ├── date-range-picker.tsx │ │ ├── main-nav.tsx │ │ ├── overview.tsx │ │ ├── recent-sales.tsx │ │ ├── search.tsx │ │ ├── team-switcher.tsx │ │ └── user-nav.tsx │ ├── layout.tsx │ ├── members │ │ ├── actions │ │ │ └── index.tsx │ │ ├── components │ │ │ ├── DialogForm.tsx │ │ │ ├── ListOfMembers.tsx │ │ │ ├── MemberTable.tsx │ │ │ ├── SearchMembers.tsx │ │ │ ├── create │ │ │ │ ├── CreateForm.tsx │ │ │ │ └── CreateMember.tsx │ │ │ └── edit │ │ │ │ ├── AccountForm.tsx │ │ │ │ ├── AdvanceForm.tsx │ │ │ │ ├── BasicForm.tsx │ │ │ │ ├── EditForm.tsx │ │ │ │ └── EditMember.tsx │ │ ├── page.tsx │ │ └── styles │ │ │ └── styles.css │ └── todo │ │ ├── actions │ │ └── index.ts │ │ ├── components │ │ ├── CreateForm.tsx │ │ ├── DialogForm.tsx │ │ ├── EditTodo.tsx │ │ ├── ListOfTodo.tsx │ │ ├── SearchTodo.tsx │ │ ├── TodoForm.tsx │ │ ├── TodoTable.tsx │ │ └── ToggleDarkMode.tsx │ │ └── page.tsx ├── error │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── mdx │ ├── layout.tsx │ └── page.mdx ├── music │ ├── components │ │ ├── album-artwork.tsx │ │ ├── menu.tsx │ │ ├── podcast-empty-placeholder.tsx │ │ └── sidebar.tsx │ ├── data │ │ ├── albums.ts │ │ └── playlists.ts │ └── page.tsx ├── og-image.jpg ├── onboarding │ └── page.tsx ├── opengraph-image.jpg ├── page.tsx ├── playground │ ├── components │ │ ├── code-viewer.tsx │ │ ├── maxlength-selector.tsx │ │ ├── model-selector.tsx │ │ ├── preset-actions.tsx │ │ ├── preset-save.tsx │ │ ├── preset-selector.tsx │ │ ├── preset-share.tsx │ │ ├── temperature-selector.tsx │ │ └── top-p-selector.tsx │ ├── data │ │ ├── models.ts │ │ └── presets.ts │ └── page.tsx ├── privacy │ ├── layout.tsx │ └── page.mdx ├── private │ └── page.tsx ├── schedule │ ├── actions │ │ └── index.tsx │ └── page.tsx ├── signout │ └── page.tsx ├── sitemap.ts ├── ssrcountries │ └── [id] │ │ ├── country.tsx │ │ └── page.tsx ├── sw.js ├── terms │ ├── layout.tsx │ └── page.mdx ├── three.d.ts ├── twitter-card.png └── twitter-image.jpg ├── components.json ├── components ├── animated-infographic.tsx ├── auth-button.tsx ├── cookie-button.tsx ├── cta.tsx ├── email-template.tsx ├── feature-prism.tsx ├── features.tsx ├── forms │ ├── contact.tsx │ ├── formactions.tsx │ ├── formstepprops.tsx │ ├── formwrapper.tsx │ ├── hreflink.tsx │ ├── profile-form.tsx │ ├── reacthookformstep.tsx │ ├── updateProfile.tsx │ └── waiting-list.tsx ├── google-auth-button.tsx ├── icons.tsx ├── main-nav.tsx ├── mobile-nav.tsx ├── onboarding-progress.tsx ├── prism-container.tsx ├── react-query-client-provider.tsx ├── schedule-form.tsx ├── sidebar-nav.tsx ├── sign-out.tsx ├── site-footer.tsx ├── site-header.tsx ├── tailwind-indicator.tsx ├── theme-provider.tsx ├── theme-toggle.tsx ├── ui │ ├── 3d-cards.tsx │ ├── Table.tsx │ ├── alert-dialog.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── button (1).tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── checkbox.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── infinite-moving-cards.tsx │ ├── input.tsx │ ├── label.tsx │ ├── marquee.tsx │ ├── menubar.tsx │ ├── popover.tsx │ ├── progress.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── slider.tsx │ ├── switch.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── time-picker.tsx │ ├── toast.tsx │ ├── toaster.tsx │ └── use-toast.ts ├── whyonyx.tsx └── whyonyxwrapper.tsx ├── config ├── docs.ts └── site.ts ├── hooks └── use-auth.ts ├── lib ├── calendar-service.ts ├── encryption.ts ├── errors.ts ├── font.tsx ├── form.tsx ├── google-auth.ts ├── hexToBech32Address.ts ├── hooks │ ├── use-copy-to-clipboard.tsx │ ├── use-enter-submit.tsx │ ├── use-local-storage.ts │ ├── use-lock-body.tsx │ ├── use-mutation-observer.tsx │ ├── use-scroll-anchor.tsx │ ├── use-sidebar.tsx │ ├── useAppForm.tsx │ └── useAppFormContext.tsx ├── schemas │ └── schemas.ts ├── supabase.ts └── utils.ts ├── mdx-components.tsx ├── middleware.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.js ├── public ├── avatar.png ├── favicon.ico ├── favicon.svg ├── images │ └── touch │ │ ├── homescreen144.png │ │ ├── homescreen168.png │ │ ├── homescreen192.png │ │ ├── homescreen48.png │ │ ├── homescreen72.png │ │ └── homescreen96.png ├── manifest.json ├── next.svg ├── onyx.svg └── vercel.svg ├── queries └── country-by-id.tsx ├── supabase └── migrations │ └── 20250409_onyxpwa.sql ├── tailwind.config.js ├── tailwind.config.ts ├── tsconfig.json ├── types └── nav.tsx ├── utils ├── actions │ └── index.tsx ├── supa-auth-admin.tsx ├── supa-server-actions.ts ├── supabase-browser.ts ├── supabase-server.ts ├── supabase │ ├── actions.ts │ └── server.ts ├── supaone.tsx └── typed-supabase-client.tsx └── vercel.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | .cache 3 | public 4 | node_modules 5 | *.esm.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/about/page.tsx -------------------------------------------------------------------------------- /app/account/account-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/account/account-form.tsx -------------------------------------------------------------------------------- /app/account/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/account/avatar.tsx -------------------------------------------------------------------------------- /app/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/account/page.tsx -------------------------------------------------------------------------------- /app/account/supa-account-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/account/supa-account-form.tsx -------------------------------------------------------------------------------- /app/api/auth/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/api/auth/callback/route.ts -------------------------------------------------------------------------------- /app/api/auth/google/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/api/auth/google/route.ts -------------------------------------------------------------------------------- /app/api/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/api/handler.rs -------------------------------------------------------------------------------- /app/api/send/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/api/send/route.ts -------------------------------------------------------------------------------- /app/api/sid/callback/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/api/sid/callback/route.tsx -------------------------------------------------------------------------------- /app/auth-server-action/actions/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth-server-action/actions/actions.tsx -------------------------------------------------------------------------------- /app/auth-server-action/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth-server-action/actions/index.ts -------------------------------------------------------------------------------- /app/auth-server-action/components/AuthFormLegacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth-server-action/components/AuthFormLegacy.tsx -------------------------------------------------------------------------------- /app/auth-server-action/components/OAuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth-server-action/components/OAuthForm.tsx -------------------------------------------------------------------------------- /app/auth-server-action/components/RegisterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth-server-action/components/RegisterForm.tsx -------------------------------------------------------------------------------- /app/auth-server-action/components/SignInForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth-server-action/components/SignInForm.tsx -------------------------------------------------------------------------------- /app/auth-server-action/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth-server-action/page.tsx -------------------------------------------------------------------------------- /app/auth/actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth/actions/index.tsx -------------------------------------------------------------------------------- /app/auth/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth/callback/route.ts -------------------------------------------------------------------------------- /app/auth/components/AuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth/components/AuthForm.tsx -------------------------------------------------------------------------------- /app/auth/components/user-auth-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth/components/user-auth-form.tsx -------------------------------------------------------------------------------- /app/auth/confirm/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth/confirm/route.ts -------------------------------------------------------------------------------- /app/auth/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth/page.tsx -------------------------------------------------------------------------------- /app/auth/signout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/auth/signout/route.ts -------------------------------------------------------------------------------- /app/blog/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/blog/layout.tsx -------------------------------------------------------------------------------- /app/blog/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/blog/page.mdx -------------------------------------------------------------------------------- /app/confirmation/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/confirmation/loading.tsx -------------------------------------------------------------------------------- /app/confirmation/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/confirmation/page.tsx -------------------------------------------------------------------------------- /app/contact/actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/contact/actions/index.tsx -------------------------------------------------------------------------------- /app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/contact/page.tsx -------------------------------------------------------------------------------- /app/countries/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/countries/[id]/page.tsx -------------------------------------------------------------------------------- /app/dashboard/(dashboard)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/(dashboard)/page.tsx -------------------------------------------------------------------------------- /app/dashboard/components/MobileSideNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/MobileSideNav.tsx -------------------------------------------------------------------------------- /app/dashboard/components/NavLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/NavLinks.tsx -------------------------------------------------------------------------------- /app/dashboard/components/SideNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/SideNav.tsx -------------------------------------------------------------------------------- /app/dashboard/components/SignOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/SignOut.tsx -------------------------------------------------------------------------------- /app/dashboard/components/ToggleSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/ToggleSidebar.tsx -------------------------------------------------------------------------------- /app/dashboard/components/date-range-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/date-range-picker.tsx -------------------------------------------------------------------------------- /app/dashboard/components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/main-nav.tsx -------------------------------------------------------------------------------- /app/dashboard/components/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/overview.tsx -------------------------------------------------------------------------------- /app/dashboard/components/recent-sales.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/recent-sales.tsx -------------------------------------------------------------------------------- /app/dashboard/components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/search.tsx -------------------------------------------------------------------------------- /app/dashboard/components/team-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/team-switcher.tsx -------------------------------------------------------------------------------- /app/dashboard/components/user-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/components/user-nav.tsx -------------------------------------------------------------------------------- /app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /app/dashboard/members/actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/actions/index.tsx -------------------------------------------------------------------------------- /app/dashboard/members/components/DialogForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/components/DialogForm.tsx -------------------------------------------------------------------------------- /app/dashboard/members/components/ListOfMembers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/components/ListOfMembers.tsx -------------------------------------------------------------------------------- /app/dashboard/members/components/MemberTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/components/MemberTable.tsx -------------------------------------------------------------------------------- /app/dashboard/members/components/SearchMembers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/components/SearchMembers.tsx -------------------------------------------------------------------------------- /app/dashboard/members/components/create/CreateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/components/create/CreateForm.tsx -------------------------------------------------------------------------------- /app/dashboard/members/components/create/CreateMember.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/components/create/CreateMember.tsx -------------------------------------------------------------------------------- /app/dashboard/members/components/edit/AccountForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/components/edit/AccountForm.tsx -------------------------------------------------------------------------------- /app/dashboard/members/components/edit/AdvanceForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/components/edit/AdvanceForm.tsx -------------------------------------------------------------------------------- /app/dashboard/members/components/edit/BasicForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/components/edit/BasicForm.tsx -------------------------------------------------------------------------------- /app/dashboard/members/components/edit/EditForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/components/edit/EditForm.tsx -------------------------------------------------------------------------------- /app/dashboard/members/components/edit/EditMember.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/components/edit/EditMember.tsx -------------------------------------------------------------------------------- /app/dashboard/members/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/page.tsx -------------------------------------------------------------------------------- /app/dashboard/members/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/members/styles/styles.css -------------------------------------------------------------------------------- /app/dashboard/todo/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/todo/actions/index.ts -------------------------------------------------------------------------------- /app/dashboard/todo/components/CreateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/todo/components/CreateForm.tsx -------------------------------------------------------------------------------- /app/dashboard/todo/components/DialogForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/todo/components/DialogForm.tsx -------------------------------------------------------------------------------- /app/dashboard/todo/components/EditTodo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/todo/components/EditTodo.tsx -------------------------------------------------------------------------------- /app/dashboard/todo/components/ListOfTodo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/todo/components/ListOfTodo.tsx -------------------------------------------------------------------------------- /app/dashboard/todo/components/SearchTodo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/todo/components/SearchTodo.tsx -------------------------------------------------------------------------------- /app/dashboard/todo/components/TodoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/todo/components/TodoForm.tsx -------------------------------------------------------------------------------- /app/dashboard/todo/components/TodoTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/todo/components/TodoTable.tsx -------------------------------------------------------------------------------- /app/dashboard/todo/components/ToggleDarkMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/todo/components/ToggleDarkMode.tsx -------------------------------------------------------------------------------- /app/dashboard/todo/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/dashboard/todo/page.tsx -------------------------------------------------------------------------------- /app/error/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/error/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/mdx/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/mdx/layout.tsx -------------------------------------------------------------------------------- /app/mdx/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/mdx/page.mdx -------------------------------------------------------------------------------- /app/music/components/album-artwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/music/components/album-artwork.tsx -------------------------------------------------------------------------------- /app/music/components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/music/components/menu.tsx -------------------------------------------------------------------------------- /app/music/components/podcast-empty-placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/music/components/podcast-empty-placeholder.tsx -------------------------------------------------------------------------------- /app/music/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/music/components/sidebar.tsx -------------------------------------------------------------------------------- /app/music/data/albums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/music/data/albums.ts -------------------------------------------------------------------------------- /app/music/data/playlists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/music/data/playlists.ts -------------------------------------------------------------------------------- /app/music/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/music/page.tsx -------------------------------------------------------------------------------- /app/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/og-image.jpg -------------------------------------------------------------------------------- /app/onboarding/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/onboarding/page.tsx -------------------------------------------------------------------------------- /app/opengraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/opengraph-image.jpg -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/playground/components/code-viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/components/code-viewer.tsx -------------------------------------------------------------------------------- /app/playground/components/maxlength-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/components/maxlength-selector.tsx -------------------------------------------------------------------------------- /app/playground/components/model-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/components/model-selector.tsx -------------------------------------------------------------------------------- /app/playground/components/preset-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/components/preset-actions.tsx -------------------------------------------------------------------------------- /app/playground/components/preset-save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/components/preset-save.tsx -------------------------------------------------------------------------------- /app/playground/components/preset-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/components/preset-selector.tsx -------------------------------------------------------------------------------- /app/playground/components/preset-share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/components/preset-share.tsx -------------------------------------------------------------------------------- /app/playground/components/temperature-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/components/temperature-selector.tsx -------------------------------------------------------------------------------- /app/playground/components/top-p-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/components/top-p-selector.tsx -------------------------------------------------------------------------------- /app/playground/data/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/data/models.ts -------------------------------------------------------------------------------- /app/playground/data/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/data/presets.ts -------------------------------------------------------------------------------- /app/playground/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/playground/page.tsx -------------------------------------------------------------------------------- /app/privacy/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/privacy/layout.tsx -------------------------------------------------------------------------------- /app/privacy/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/privacy/page.mdx -------------------------------------------------------------------------------- /app/private/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/private/page.tsx -------------------------------------------------------------------------------- /app/schedule/actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/schedule/actions/index.tsx -------------------------------------------------------------------------------- /app/schedule/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/schedule/page.tsx -------------------------------------------------------------------------------- /app/signout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/signout/page.tsx -------------------------------------------------------------------------------- /app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/sitemap.ts -------------------------------------------------------------------------------- /app/ssrcountries/[id]/country.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/ssrcountries/[id]/country.tsx -------------------------------------------------------------------------------- /app/ssrcountries/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/ssrcountries/[id]/page.tsx -------------------------------------------------------------------------------- /app/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/sw.js -------------------------------------------------------------------------------- /app/terms/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/terms/layout.tsx -------------------------------------------------------------------------------- /app/terms/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/terms/page.mdx -------------------------------------------------------------------------------- /app/three.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'three'; -------------------------------------------------------------------------------- /app/twitter-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/twitter-card.png -------------------------------------------------------------------------------- /app/twitter-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/app/twitter-image.jpg -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components.json -------------------------------------------------------------------------------- /components/animated-infographic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/animated-infographic.tsx -------------------------------------------------------------------------------- /components/auth-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/auth-button.tsx -------------------------------------------------------------------------------- /components/cookie-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/cookie-button.tsx -------------------------------------------------------------------------------- /components/cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/cta.tsx -------------------------------------------------------------------------------- /components/email-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/email-template.tsx -------------------------------------------------------------------------------- /components/feature-prism.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/feature-prism.tsx -------------------------------------------------------------------------------- /components/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/features.tsx -------------------------------------------------------------------------------- /components/forms/contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/forms/contact.tsx -------------------------------------------------------------------------------- /components/forms/formactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/forms/formactions.tsx -------------------------------------------------------------------------------- /components/forms/formstepprops.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/forms/formstepprops.tsx -------------------------------------------------------------------------------- /components/forms/formwrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/forms/formwrapper.tsx -------------------------------------------------------------------------------- /components/forms/hreflink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/forms/hreflink.tsx -------------------------------------------------------------------------------- /components/forms/profile-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/forms/profile-form.tsx -------------------------------------------------------------------------------- /components/forms/reacthookformstep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/forms/reacthookformstep.tsx -------------------------------------------------------------------------------- /components/forms/updateProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/forms/updateProfile.tsx -------------------------------------------------------------------------------- /components/forms/waiting-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/forms/waiting-list.tsx -------------------------------------------------------------------------------- /components/google-auth-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/google-auth-button.tsx -------------------------------------------------------------------------------- /components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/icons.tsx -------------------------------------------------------------------------------- /components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/main-nav.tsx -------------------------------------------------------------------------------- /components/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/mobile-nav.tsx -------------------------------------------------------------------------------- /components/onboarding-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/onboarding-progress.tsx -------------------------------------------------------------------------------- /components/prism-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/prism-container.tsx -------------------------------------------------------------------------------- /components/react-query-client-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/react-query-client-provider.tsx -------------------------------------------------------------------------------- /components/schedule-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/schedule-form.tsx -------------------------------------------------------------------------------- /components/sidebar-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/sidebar-nav.tsx -------------------------------------------------------------------------------- /components/sign-out.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/sign-out.tsx -------------------------------------------------------------------------------- /components/site-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/site-footer.tsx -------------------------------------------------------------------------------- /components/site-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/site-header.tsx -------------------------------------------------------------------------------- /components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/theme-toggle.tsx -------------------------------------------------------------------------------- /components/ui/3d-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/3d-cards.tsx -------------------------------------------------------------------------------- /components/ui/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/Table.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button (1).tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/button (1).tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/infinite-moving-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/infinite-moving-cards.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/marquee.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/time-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/time-picker.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /components/whyonyx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/whyonyx.tsx -------------------------------------------------------------------------------- /components/whyonyxwrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/components/whyonyxwrapper.tsx -------------------------------------------------------------------------------- /config/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/config/docs.ts -------------------------------------------------------------------------------- /config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/config/site.ts -------------------------------------------------------------------------------- /hooks/use-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/hooks/use-auth.ts -------------------------------------------------------------------------------- /lib/calendar-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/calendar-service.ts -------------------------------------------------------------------------------- /lib/encryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/encryption.ts -------------------------------------------------------------------------------- /lib/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/errors.ts -------------------------------------------------------------------------------- /lib/font.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/font.tsx -------------------------------------------------------------------------------- /lib/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/form.tsx -------------------------------------------------------------------------------- /lib/google-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/google-auth.ts -------------------------------------------------------------------------------- /lib/hexToBech32Address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/hexToBech32Address.ts -------------------------------------------------------------------------------- /lib/hooks/use-copy-to-clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/hooks/use-copy-to-clipboard.tsx -------------------------------------------------------------------------------- /lib/hooks/use-enter-submit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/hooks/use-enter-submit.tsx -------------------------------------------------------------------------------- /lib/hooks/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/hooks/use-local-storage.ts -------------------------------------------------------------------------------- /lib/hooks/use-lock-body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/hooks/use-lock-body.tsx -------------------------------------------------------------------------------- /lib/hooks/use-mutation-observer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/hooks/use-mutation-observer.tsx -------------------------------------------------------------------------------- /lib/hooks/use-scroll-anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/hooks/use-scroll-anchor.tsx -------------------------------------------------------------------------------- /lib/hooks/use-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/hooks/use-sidebar.tsx -------------------------------------------------------------------------------- /lib/hooks/useAppForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/hooks/useAppForm.tsx -------------------------------------------------------------------------------- /lib/hooks/useAppFormContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/hooks/useAppFormContext.tsx -------------------------------------------------------------------------------- /lib/schemas/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/schemas/schemas.ts -------------------------------------------------------------------------------- /lib/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/supabase.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/mdx-components.tsx -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/avatar.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/images/touch/homescreen144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/images/touch/homescreen144.png -------------------------------------------------------------------------------- /public/images/touch/homescreen168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/images/touch/homescreen168.png -------------------------------------------------------------------------------- /public/images/touch/homescreen192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/images/touch/homescreen192.png -------------------------------------------------------------------------------- /public/images/touch/homescreen48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/images/touch/homescreen48.png -------------------------------------------------------------------------------- /public/images/touch/homescreen72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/images/touch/homescreen72.png -------------------------------------------------------------------------------- /public/images/touch/homescreen96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/images/touch/homescreen96.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/onyx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/onyx.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /queries/country-by-id.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/queries/country-by-id.tsx -------------------------------------------------------------------------------- /supabase/migrations/20250409_onyxpwa.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/supabase/migrations/20250409_onyxpwa.sql -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/types/nav.tsx -------------------------------------------------------------------------------- /utils/actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/utils/actions/index.tsx -------------------------------------------------------------------------------- /utils/supa-auth-admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/utils/supa-auth-admin.tsx -------------------------------------------------------------------------------- /utils/supa-server-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/utils/supa-server-actions.ts -------------------------------------------------------------------------------- /utils/supabase-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/utils/supabase-browser.ts -------------------------------------------------------------------------------- /utils/supabase-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/utils/supabase-server.ts -------------------------------------------------------------------------------- /utils/supabase/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/utils/supabase/actions.ts -------------------------------------------------------------------------------- /utils/supabase/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/utils/supabase/server.ts -------------------------------------------------------------------------------- /utils/supaone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/utils/supaone.tsx -------------------------------------------------------------------------------- /utils/typed-supabase-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/utils/typed-supabase-client.tsx -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmourey26/onyx/HEAD/vercel.json --------------------------------------------------------------------------------