├── .cache └── storybook │ └── default │ └── dev-server │ ├── storybook-0c9aba2732f8798ca2ae104c09855acc │ └── storybook-21d6f40cfb511982e4424e0e250a9557 ├── .env.development.example ├── .env.example ├── .gitguardian.yaml ├── .github ├── pull_request_template.md └── workflows │ ├── build-and-deploy-dev.yml │ ├── build-and-deploy.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CLA.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-ATTRIBUTION.md ├── README.md ├── backend ├── atria │ ├── .dockerignore │ ├── .flaskenv │ ├── .gitignore │ ├── .testenv │ ├── Dockerfile │ ├── Makefile │ ├── api │ │ ├── __init__.py │ │ ├── app.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── helpers.py │ │ │ ├── jwt.py │ │ │ ├── jwt.py.backup │ │ │ └── views.py │ │ ├── celery_app.py │ │ ├── commons │ │ │ ├── __init__.py │ │ │ ├── apispec.py │ │ │ ├── avatar_presets.py │ │ │ ├── decorators.py │ │ │ ├── encryption.py │ │ │ ├── pagination.py │ │ │ ├── rate_limit.py │ │ │ ├── socket_decorators.py │ │ │ ├── streaming.py │ │ │ └── templates │ │ │ │ ├── redoc.j2 │ │ │ │ └── swagger.j2 │ │ ├── config.py │ │ ├── config_test.py │ │ ├── email_templates │ │ │ ├── base.html │ │ │ ├── connection_request.html │ │ │ ├── email_verification.html │ │ │ ├── event_invitation_existing.html │ │ │ ├── event_invitation_new.html │ │ │ ├── organization_invitation_existing.html │ │ │ ├── organization_invitation_new.html │ │ │ └── password_reset.html │ │ ├── extensions.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── blocklist.py │ │ │ ├── chat_message.py │ │ │ ├── chat_room.py │ │ │ ├── connection.py │ │ │ ├── direct_message.py │ │ │ ├── direct_message_thread.py │ │ │ ├── email_verification.py │ │ │ ├── enums.py │ │ │ ├── event.py │ │ │ ├── event_invitation.py │ │ │ ├── event_user.py │ │ │ ├── organization.py │ │ │ ├── organization_invitation.py │ │ │ ├── organization_user.py │ │ │ ├── password_reset.py │ │ │ ├── session.py │ │ │ ├── session_speaker.py │ │ │ ├── sponsor.py │ │ │ ├── user.py │ │ │ ├── user_encryption_key.py │ │ │ └── user_key_backup.py │ │ ├── routes │ │ │ ├── __init__.py │ │ │ ├── analytics.py │ │ │ ├── auth.py │ │ │ ├── chat_rooms.py │ │ │ ├── connections.py │ │ │ ├── direct_messages.py │ │ │ ├── event_invitations.py │ │ │ ├── event_users.py │ │ │ ├── events.py │ │ │ ├── health.py │ │ │ ├── invitations.py │ │ │ ├── moderation.py │ │ │ ├── organization_invitations.py │ │ │ ├── organization_users.py │ │ │ ├── organizations.py │ │ │ ├── session_speakers.py │ │ │ ├── sessions.py │ │ │ ├── sponsors.py │ │ │ ├── uploads.py │ │ │ └── users.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── chat.py │ │ │ ├── connection.py │ │ │ ├── dashboard.py │ │ │ ├── direct_message.py │ │ │ ├── event.py │ │ │ ├── event_invitation.py │ │ │ ├── event_user.py │ │ │ ├── invitation.py │ │ │ ├── moderation.py │ │ │ ├── organization.py │ │ │ ├── organization_invitation.py │ │ │ ├── organization_user.py │ │ │ ├── pagination.py.backup │ │ │ ├── privacy.py │ │ │ ├── session.py │ │ │ ├── session_speaker.py │ │ │ ├── sponsor.py │ │ │ ├── upload.py │ │ │ ├── user.py │ │ │ └── user_privacy.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── cache_service.py │ │ │ ├── chat_room.py │ │ │ ├── connection.py │ │ │ ├── dashboard.py │ │ │ ├── direct_message.py │ │ │ ├── email.py │ │ │ ├── email_verification.py │ │ │ ├── event.py │ │ │ ├── event_invitation.py │ │ │ ├── event_user.py │ │ │ ├── event_user_with_email_example.py │ │ │ ├── invitation.py │ │ │ ├── jaas_service.py │ │ │ ├── moderation.py │ │ │ ├── mux_playback_service.py │ │ │ ├── organization.py │ │ │ ├── organization_invitation.py │ │ │ ├── organization_user.py │ │ │ ├── password_reset.py │ │ │ ├── presence_service.py │ │ │ ├── privacy.py │ │ │ ├── session.py │ │ │ ├── session_speaker.py │ │ │ ├── sponsor.py │ │ │ ├── storage.py │ │ │ ├── typing_service.py │ │ │ └── user.py │ │ ├── sockets │ │ │ ├── __init__.py │ │ │ ├── chat.py │ │ │ ├── chat_notifications.py │ │ │ ├── connections.py │ │ │ ├── direct_messages.py │ │ │ ├── dm_notifications.py │ │ │ ├── presence_notifications.py │ │ │ └── session_manager.py │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ └── example.py │ │ └── wsgi.py │ ├── cookiecutter-options.yml │ ├── init.sh │ ├── init.sh.local_backup │ ├── migrations │ │ ├── README │ │ ├── alembic.ini │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ │ ├── 118120f66269_add_soft_delete_fields_to_events_table.py │ │ │ ├── 1bfd027a806e_initial_migration_20250617_015908.py │ │ │ ├── 2713aaed8111_add_removed_status_to_connectionstatus_.py │ │ │ ├── 37eec564a2db_add_short_description_field_to_sessions.py │ │ │ ├── 41ee1eccb261_add_event_invitations_table.py │ │ │ ├── 66e463f92dd2_add_performance_indexes_for_agenda_.py │ │ │ ├── 66e7b507779d_add_indexes_for_networking_page_.py │ │ │ ├── 67b73d57262a_add_in_person_to_eventformat_enum.py │ │ │ ├── 718866fb463c_add_display_order_to_chat_rooms.py │ │ │ ├── 72e8864b68e5_add_mux_byoa_credentials_to_.py │ │ │ ├── 786370c454f1_add_green_room_chat_type_and_session_.py │ │ │ ├── 7b15b01c6f88_add_session_chat_rooms_with_room_type_.py │ │ │ ├── 8e3e54a7a3bb_add_indexes_for_thread_cutoff_.py │ │ │ ├── 8ffc625fa02e_add_venue_state_field_to_events_table.py │ │ │ ├── 9abed782819f_add_soft_delete_fields_to_chatmessage.py │ │ │ ├── add_event_scoped_threads_and_hiding.py │ │ │ ├── add_in_person_to_eventformat_enum_proper.py │ │ │ ├── add_privacy_settings_and_moderation.py │ │ │ ├── cffa8922508f_add_sponsors_table_and_sponsor_tiers_to_.py │ │ │ ├── d52998f34f7e_add_jitsi_and_other_streaming_platforms.py │ │ │ ├── d8f2d07ddea9_add_streaming_platform_fields_to_.py │ │ │ ├── e11ba2805ba3_add_organization_invitations_table.py │ │ │ ├── e51b275a36cf_add_timezone_field_to_events.py │ │ │ ├── eee0ea388710_add_main_session_id_to_event_model_for_.py │ │ │ ├── f5a3932810c6_update_privacy_settings_enums_remove_.py │ │ │ ├── f96e4714ccd7_fix_unique_constraint_for_event_scoped_.py │ │ │ ├── fa31a7e10fa4_add_email_verification_and_password_.py │ │ │ └── fractional_display_order.py │ ├── migrations_old_20250616_200142 │ │ ├── README │ │ ├── alembic.ini │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ │ └── 3c1147a2f1e0_initial_migration_20250616_031320.py │ ├── old_tests_backup │ │ ├── README.md │ │ ├── factories.py │ │ ├── test_auth.py │ │ ├── test_celery.py │ │ ├── test_factory_debug.py │ │ └── test_user.py │ ├── pytest.ini │ ├── requirements.txt │ ├── run_tests.sh │ ├── scripts │ │ └── update_sponsor_tiers_colors.py │ ├── seeders │ │ ├── comprehensive_seed_data.py │ │ ├── comprehensive_seed_db.py │ │ ├── constants.py │ │ ├── enhanced_chat.py │ │ ├── enhanced_sessions.py │ │ ├── long_dm_conversation.py │ │ ├── seed_data.py │ │ └── seed_db.py │ ├── setup.py │ ├── tests │ │ ├── TEST_INVENTORY.md │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── factories │ │ │ ├── __init__.py │ │ │ ├── chat_factory.py │ │ │ ├── connection_factory.py │ │ │ ├── direct_message_factory.py │ │ │ ├── event_factory.py │ │ │ ├── invitation_factory.py │ │ │ ├── organization_factory.py │ │ │ ├── session_factory.py │ │ │ ├── sponsor_factory.py │ │ │ └── user_factory.py │ │ ├── test_commons │ │ │ ├── __init__.py │ │ │ ├── test_encryption.py │ │ │ ├── test_jaas_streaming.py │ │ │ └── test_streaming.py │ │ ├── test_integration │ │ │ ├── test_auth_integration.py │ │ │ ├── test_chat_integration.py │ │ │ ├── test_connection_integration.py │ │ │ ├── test_dm_integration.py │ │ │ ├── test_event_integration.py │ │ │ ├── test_jitsi_integration.py │ │ │ ├── test_moderation_integration.py │ │ │ ├── test_organization_integration.py │ │ │ ├── test_session_integration.py │ │ │ ├── test_sponsor_integration.py │ │ │ └── test_streaming_platforms_integration.py │ │ ├── test_models │ │ │ ├── __init__.py │ │ │ ├── test_direct_message_model.py │ │ │ ├── test_direct_message_thread_model.py │ │ │ ├── test_event_model.py │ │ │ ├── test_event_user_model.py │ │ │ ├── test_organization_jaas.py │ │ │ ├── test_organization_model.py │ │ │ ├── test_organization_mux.py │ │ │ ├── test_organization_user_model.py │ │ │ ├── test_session_model.py │ │ │ ├── test_session_streaming.py │ │ │ └── test_user_model.py │ │ ├── test_services │ │ │ ├── test_jaas_service.py │ │ │ └── test_mux_playback_service.py │ │ └── test_setup.py │ └── tox.ini └── scripts │ ├── chartdb_metadata.json │ ├── export_chartdb.sh │ └── export_chartdb_metadata.sql ├── backups └── api.js.backup ├── database-schema.dbml ├── database-schema.json ├── deploy ├── .npm_config ├── Dockerfile.backend.prod ├── Dockerfile.frontend.prod ├── docker-compose-prod.yml └── init.sh ├── dev-environment-chooser.sh ├── docker-compose.dev-vite.yml ├── docker-compose.local-dev.yml ├── docker-compose.preview.yml ├── docker-compose.production.yml ├── docker-compose.redis-dev.yml ├── docker-compose.tailscale-dev.yml ├── docker-compose.test.yml ├── frontend ├── .gitignore ├── .storybook │ ├── main.ts │ └── preview.ts ├── Dockerfile ├── README.md ├── create-styles.sh ├── csp-header.conf ├── eslint.config.js ├── index.html ├── jsconfig.json ├── nginx.conf ├── nginx.dev.conf ├── package-lock.json ├── package.json ├── public │ ├── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ ├── fonts │ │ ├── abeezee-latin.woff2 │ │ ├── fonts.css │ │ └── mplus2-700-latin.woff2 │ ├── images │ │ └── og-image.png │ ├── robots.txt │ ├── sitemap.xml │ └── vite.svg ├── scripts │ ├── build-with-prerender.sh │ └── prerender.mjs ├── security-headers.conf ├── src │ ├── app │ │ ├── features │ │ │ ├── api │ │ │ │ ├── baseQuery.js │ │ │ │ └── index.js │ │ │ ├── auth │ │ │ │ └── api.js │ │ │ ├── chat │ │ │ │ └── api.js │ │ │ ├── eventInvitations │ │ │ │ └── api.js │ │ │ ├── events │ │ │ │ └── api.js │ │ │ ├── invitations │ │ │ │ └── api.js │ │ │ ├── moderation │ │ │ │ └── api.js │ │ │ ├── networking │ │ │ │ ├── TBD - api-simplified.js │ │ │ │ ├── api.js │ │ │ │ └── socketClient.js │ │ │ ├── organizations │ │ │ │ └── api.js │ │ │ ├── sessions │ │ │ │ └── api.js │ │ │ ├── sponsors │ │ │ │ └── api.js │ │ │ ├── uploads │ │ │ │ └── api.js │ │ │ └── users │ │ │ │ └── api.js │ │ ├── router │ │ │ ├── guards │ │ │ │ ├── AuthGuard.jsx │ │ │ │ └── PublicGuard.jsx │ │ │ ├── layouts │ │ │ │ ├── AppLayout │ │ │ │ │ ├── AppLayout.module.css │ │ │ │ │ └── index.jsx │ │ │ │ └── RootLayout │ │ │ │ │ └── index.jsx │ │ │ └── routes │ │ │ │ ├── index.jsx │ │ │ │ ├── protectedRoutes.jsx │ │ │ │ └── publicRoutes.jsx │ │ ├── services │ │ │ └── encryptionServices.js │ │ └── store │ │ │ ├── authSlice.js │ │ │ ├── chatSlice.js │ │ │ ├── index.js │ │ │ └── uiSlice.js │ ├── assets │ │ ├── atria-logo.svg │ │ └── react.svg │ ├── lib │ │ └── axios.js │ ├── main.jsx │ ├── pages │ │ ├── Agenda │ │ │ ├── AgendaView │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── DateNavigation │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── SessionCard │ │ │ │ ├── SpeakerItem.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── hooks │ │ │ │ └── useSessionLayout.js │ │ │ ├── index.jsx │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── Auth │ │ │ ├── EmailVerification │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ └── ResetPassword │ │ │ │ ├── components │ │ │ │ ├── ErrorState.jsx │ │ │ │ ├── LoadingState.jsx │ │ │ │ ├── PageLayout.jsx │ │ │ │ ├── ResetForm.jsx │ │ │ │ └── SuccessState.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ └── resetPasswordSchema.js │ │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── Dashboard │ │ │ ├── ConnectionsSection │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── EventsSection │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── InvitationsSection │ │ │ │ ├── InvitationCard.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ ├── InvitationCard.module.css │ │ │ │ │ └── index.module.css │ │ │ ├── NewsSection │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── OrganizationsSection │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── ProfileHeader │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── StatsGrid │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── StatsSection │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── index.jsx │ │ │ ├── shared │ │ │ │ └── responsive.module.css │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── Errors │ │ │ ├── ErrorPage.jsx │ │ │ ├── NotFound.jsx │ │ │ └── styles.module.css │ │ ├── EventAdmin │ │ │ ├── AttendeesManager │ │ │ │ ├── AttendeeCard │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── AttendeeRow │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── AttendeesList │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── HeaderSection │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── InviteModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── PendingInvitations │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── RoleUpdateModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ │ └── attendeeSchemas.js │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── EventSettings │ │ │ │ ├── BasicInfoSection │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── BrandingSection │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── ContentSections │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── DangerZoneSection │ │ │ │ │ ├── DeleteEventModal │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── NetworkingSection │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── VenueSection │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ │ └── eventSettingsSchemas.js │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── NetworkingManager │ │ │ │ ├── ChatRoomModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── ChatRoomRow │ │ │ │ │ ├── MobileCard.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── ChatRoomsList │ │ │ │ │ ├── DraggableCard.jsx │ │ │ │ │ ├── DraggableTableRow.jsx │ │ │ │ │ ├── EmptyState.jsx │ │ │ │ │ ├── RoomTypeSection.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ │ └── chatRoomSchema.js │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── SessionManager │ │ │ │ ├── SessionCard │ │ │ │ │ └── index.jsx │ │ │ │ ├── SessionCardMobile │ │ │ │ │ └── index.jsx │ │ │ │ ├── SessionEmptyState.jsx │ │ │ │ ├── SessionErrorState.jsx │ │ │ │ ├── SessionList │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── SessionManagerHeader.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ │ └── sessionCardSchema.js │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── SpeakersManager │ │ │ │ ├── AddSpeakerModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── SpeakerCard │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── SpeakerEditModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── SpeakerRow │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── SpeakersList │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ │ └── speakerSchemas.js │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ └── SponsorsManager │ │ │ │ ├── DroppableTier │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ ├── OLD_SponsorRow │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ ├── SponsorCard │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ ├── SponsorModal │ │ │ │ ├── BasicInfoSection.jsx │ │ │ │ ├── ContactInfoSection.jsx │ │ │ │ ├── LogoUploadSection.jsx │ │ │ │ ├── SocialLinksSection.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── styles │ │ │ │ │ └── index.module.css │ │ │ │ └── useSponsorForm.js │ │ │ │ ├── SponsorsHeader │ │ │ │ ├── SponsorsHeader.module.css │ │ │ │ └── index.jsx │ │ │ │ ├── SponsorsList │ │ │ │ ├── SponsorTierList.jsx │ │ │ │ ├── SponsorsEmptyState.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── styles │ │ │ │ │ └── index.module.css │ │ │ │ └── useSponsorDragDrop.js │ │ │ │ ├── TierManagementModal │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ └── sponsorSchema.js │ │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── EventHome │ │ │ ├── EventInfo │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── FAQ │ │ │ │ ├── FAQItem.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ ├── FAQItem.module.css │ │ │ │ │ └── index.module.css │ │ │ ├── Hero │ │ │ │ ├── EventHeroContent.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── Highlights │ │ │ │ ├── HighlightCard.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ ├── HighlightCard.module.css │ │ │ │ │ └── index.module.css │ │ │ ├── Welcome │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── index.jsx │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── Events │ │ │ ├── EventsList │ │ │ │ ├── AttendeeEventCard │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── EmptyState │ │ │ │ │ └── index.jsx │ │ │ │ ├── EventCard │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── EventInvitationCard │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── EventSection │ │ │ │ │ └── index.jsx │ │ │ │ ├── index.js │ │ │ │ ├── index.jsx │ │ │ │ ├── styles │ │ │ │ │ └── index.module.css │ │ │ │ └── utils │ │ │ │ │ └── eventCategorization.js │ │ │ └── OrganizationEvents │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── Invitations │ │ │ └── AcceptInvitation │ │ │ │ ├── components │ │ │ │ ├── AllInvitations.jsx │ │ │ │ ├── ExistingUserNotice.jsx │ │ │ │ ├── InvitationHeader.jsx │ │ │ │ ├── InvitationItem.jsx │ │ │ │ ├── RegistrationForm.jsx │ │ │ │ └── RoleImplication.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ └── registrationSchema.js │ │ │ │ └── styles │ │ │ │ ├── AllInvitations.module.css │ │ │ │ ├── ExistingUserNotice.module.css │ │ │ │ ├── InvitationHeader.module.css │ │ │ │ ├── InvitationItem.module.css │ │ │ │ ├── RegistrationForm.module.css │ │ │ │ ├── RoleImplication.module.css │ │ │ │ └── index.module.css │ │ ├── Landing │ │ │ ├── App.jsx │ │ │ ├── AudienceCards │ │ │ │ ├── AudienceCards.module.css │ │ │ │ ├── audienceData.js │ │ │ │ ├── components │ │ │ │ │ ├── AudienceCard.jsx │ │ │ │ │ ├── AudienceCard.module.css │ │ │ │ │ ├── SectionHeader.jsx │ │ │ │ │ ├── SectionHeader.module.css │ │ │ │ │ └── index.js │ │ │ │ └── index.jsx │ │ │ ├── BrandExperience │ │ │ │ ├── BrandExperience.module.css │ │ │ │ ├── components │ │ │ │ │ ├── BrandHeader.jsx │ │ │ │ │ ├── BrandHeader.module.css │ │ │ │ │ ├── DashboardView.jsx │ │ │ │ │ ├── DashboardView.module.css │ │ │ │ │ ├── EventView.jsx │ │ │ │ │ ├── EventView.module.css │ │ │ │ │ └── index.js │ │ │ │ └── index.jsx │ │ │ ├── COMPONENT_GUIDE.md │ │ │ ├── CallToAction │ │ │ │ ├── CallToAction.module.css │ │ │ │ └── index.jsx │ │ │ ├── ConnectionImpact │ │ │ │ ├── ConnectionImpact.module.css │ │ │ │ └── index.jsx │ │ │ ├── Footer │ │ │ │ ├── Footer.module.css │ │ │ │ └── index.jsx │ │ │ ├── Hero │ │ │ │ ├── Hero.module.css │ │ │ │ ├── drape-bottom.svg │ │ │ │ ├── index.jsx │ │ │ │ └── wave-drape.svg │ │ │ ├── Landing.module.css │ │ │ ├── OpenSourceSplit │ │ │ │ ├── OpenSourceSplit.module.css │ │ │ │ ├── components │ │ │ │ │ ├── IntroPanel.jsx │ │ │ │ │ ├── IntroPanel.module.css │ │ │ │ │ ├── OptionPanel.jsx │ │ │ │ │ ├── OptionPanel.module.css │ │ │ │ │ ├── PhilosophyPanel.jsx │ │ │ │ │ ├── PhilosophyPanel.module.css │ │ │ │ │ └── index.js │ │ │ │ └── index.jsx │ │ │ ├── PlatformDemo │ │ │ │ ├── PlatformDemo.module.css │ │ │ │ ├── components │ │ │ │ │ ├── AgendaDemo │ │ │ │ │ │ ├── AgendaDemo.module.css │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── NetworkingDemo │ │ │ │ │ │ ├── NetworkingDemo.module.css │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── SessionDemo │ │ │ │ │ │ ├── SessionDemo.module.css │ │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ ├── ProblemStatement │ │ │ │ ├── ProblemStatement.module.css │ │ │ │ └── index.jsx │ │ │ ├── TechIntegrations │ │ │ │ ├── TechIntegrations.module.css │ │ │ │ └── index.jsx │ │ │ ├── _variables.css │ │ │ ├── animations │ │ │ │ ├── BackgroundEffects │ │ │ │ │ ├── FloatingShapes.jsx │ │ │ │ │ └── FloatingShapes.module.css │ │ │ │ ├── ScrollEffects │ │ │ │ │ ├── ScrollIndicator.jsx │ │ │ │ │ └── ScrollIndicator.module.css │ │ │ │ └── TextEffects │ │ │ │ │ ├── ReadingSpeedReveal.jsx │ │ │ │ │ └── ReadingSpeedReveal.module.css │ │ │ ├── common │ │ │ │ └── Wrappers │ │ │ │ │ ├── SectionWrapper.jsx │ │ │ │ │ └── SectionWrapper.module.css │ │ │ ├── index.jsx │ │ │ ├── sections │ │ │ │ └── Hero │ │ │ │ │ ├── HeroSection.jsx │ │ │ │ │ └── HeroSection.module.css │ │ │ ├── shared │ │ │ │ ├── MagneticButton │ │ │ │ │ ├── MagneticButton.module.css │ │ │ │ │ └── index.jsx │ │ │ │ └── useModalManager.jsx │ │ │ └── ui │ │ │ │ ├── Buttons │ │ │ │ ├── Button.jsx │ │ │ │ └── Button.module.css │ │ │ │ ├── Cards │ │ │ │ ├── EventCard.jsx │ │ │ │ ├── EventCard.module.css │ │ │ │ ├── FeatureCard.jsx │ │ │ │ ├── FeatureCard.module.css │ │ │ │ ├── PlatformCard.jsx │ │ │ │ ├── PlatformCard.module.css │ │ │ │ ├── TimeSlotCard.jsx │ │ │ │ └── TimeSlotCard.module.css │ │ │ │ ├── Layouts │ │ │ │ ├── AgendaLayout.jsx │ │ │ │ └── AgendaLayout.module.css │ │ │ │ ├── Navigation │ │ │ │ ├── NavBar.jsx │ │ │ │ └── NavBar.module.css │ │ │ │ ├── NetworkVisualization │ │ │ │ ├── NetworkGraph.jsx │ │ │ │ └── NetworkGraph.module.css │ │ │ │ ├── Stats │ │ │ │ ├── AnimatedStatCard.jsx │ │ │ │ ├── AnimatedStatCard.module.css │ │ │ │ └── StatsCounter.jsx │ │ │ │ ├── Testimonials │ │ │ │ ├── TestimonialCard.jsx │ │ │ │ └── TestimonialCard.module.css │ │ │ │ └── Typography │ │ │ │ └── ScrambleText.jsx │ │ ├── Landing_backup_v2 │ │ │ ├── Features │ │ │ │ ├── FeatureCard.jsx │ │ │ │ ├── FeatureCarousel.jsx │ │ │ │ ├── FeatureGrid.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ ├── FeatureCard.module.css │ │ │ │ │ ├── FeatureCarousel.module.css │ │ │ │ │ └── index.module.css │ │ │ ├── Hero │ │ │ │ ├── HeroActions.jsx │ │ │ │ ├── HeroTagline.jsx │ │ │ │ ├── HeroTitle.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ ├── HeroActions.module.css │ │ │ │ │ ├── HeroTagline.module.css │ │ │ │ │ ├── HeroTitle.module.css │ │ │ │ │ └── index.module.css │ │ │ ├── Stats │ │ │ │ ├── StatItem.jsx │ │ │ │ ├── StatsList.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ ├── StatItem.module.css │ │ │ │ │ ├── StatsList.module.css │ │ │ │ │ └── index.module.css │ │ │ ├── Testimonials │ │ │ │ ├── TestimonialCard.jsx │ │ │ │ ├── TestimonialContent.jsx │ │ │ │ ├── TestimonialImage.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ ├── TestimonialCard.module.css │ │ │ │ │ ├── TestimonialContent.module.css │ │ │ │ │ ├── TestimonialImage.module.css │ │ │ │ │ └── index.module.css │ │ │ ├── index.jsx │ │ │ └── index.module.css │ │ ├── Navigation │ │ │ ├── EventNav │ │ │ │ ├── EventNav.module.css │ │ │ │ ├── components │ │ │ │ │ ├── AdminSection │ │ │ │ │ │ ├── AdminSection.module.css │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── EventLinks │ │ │ │ │ │ ├── EventLinks.module.css │ │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ ├── TopNav │ │ │ │ ├── TopNav.module.css │ │ │ │ ├── components │ │ │ │ │ ├── CenterContent │ │ │ │ │ │ ├── CenterContent.module.css │ │ │ │ │ │ ├── SimpleTitle.jsx │ │ │ │ │ │ ├── TitleWithSubtitle.jsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── MenuButton │ │ │ │ │ │ ├── MenuButton.module.css │ │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ ├── constants │ │ │ │ └── routes.js │ │ │ ├── hooks │ │ │ │ └── useNavigationTitle.js │ │ │ └── index.js │ │ ├── Network │ │ │ ├── ConnectionCard │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── ConnectionRow │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── ConnectionsList │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── index.jsx │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── Networking │ │ │ ├── AttendeesGrid │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── ChatArea │ │ │ │ ├── ChatRoom │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── DeleteMessageModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── MessageBubble │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── MessageInput │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── MessageList │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── RequestsList │ │ │ │ ├── RequestCard │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── index.jsx │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── NewUserLanding │ │ │ ├── ActionCard.jsx │ │ │ ├── NewUserLanding.jsx │ │ │ ├── index.jsx │ │ │ └── styles │ │ │ │ ├── ActionCard.module.css │ │ │ │ └── index.module.css │ │ ├── Organizations │ │ │ ├── CreateOrganization │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ │ └── createOrgSchema.js │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── OrganizationDashboard │ │ │ │ ├── EventsSection │ │ │ │ │ ├── EventCard │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ └── index.module.css │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── MembersSection │ │ │ │ │ ├── InviteModal │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ └── index.module.css │ │ │ │ │ ├── MemberCard │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ └── index.module.css │ │ │ │ │ ├── MemberRow │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ └── index.module.css │ │ │ │ │ ├── MembersList │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ └── index.module.css │ │ │ │ │ ├── PendingInvitations │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ └── index.module.css │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── OrganizationHeader │ │ │ │ │ ├── JaasCredentialsSection.jsx │ │ │ │ │ ├── MuxCredentialsSection.jsx │ │ │ │ │ ├── OrganizationNameSection.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── OrganizationDetails │ │ │ │ └── MemberLIst │ │ │ │ │ ├── MemberCard │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ └── OrganizationsList │ │ │ │ ├── OrganizationCard │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── Profile │ │ │ ├── AboutSection │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── ActivityOverview │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── ProfessionalInfo │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── ProfileHero │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── SocialLinks │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── index.jsx │ │ │ ├── schemas │ │ │ │ └── profileSchema.js │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── Roadmap │ │ │ ├── index.jsx │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── Session │ │ │ ├── SessionChat │ │ │ │ ├── ChatRoomView │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── ChatTabs │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── SessionChatHeader │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── SessionDetails │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── SessionDisplay │ │ │ │ ├── SessionCountdown.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── players │ │ │ │ │ ├── JitsiPlayer.jsx │ │ │ │ │ ├── MuxPlayer.jsx │ │ │ │ │ ├── OtherLinkCard.jsx │ │ │ │ │ ├── VimeoPlayer.jsx │ │ │ │ │ ├── ZoomJoinCard.jsx │ │ │ │ │ └── index.js │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── SessionPending │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── SessionSpeakers │ │ │ │ ├── SpeakerCard │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── SetupSession │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── index.jsx │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── Settings │ │ │ ├── components │ │ │ │ ├── PrivacySettings │ │ │ │ │ ├── ConnectionSection.jsx │ │ │ │ │ ├── EmailSection.jsx │ │ │ │ │ ├── EventOverrides.jsx │ │ │ │ │ ├── ProfileSection.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── styles.module.css │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ └── SecuritySettings │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ ├── index.jsx │ │ │ ├── schemas │ │ │ │ ├── privacySchema.js │ │ │ │ └── securitySchema.js │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── Speakers │ │ │ ├── Speakers.module.css │ │ │ ├── SpeakersList │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ └── index.jsx │ │ └── Sponsors │ │ │ ├── Sponsors.module.css │ │ │ ├── SponsorsList │ │ │ ├── index.jsx │ │ │ └── styles │ │ │ │ └── index.module.css │ │ │ └── index.jsx │ ├── shared │ │ ├── components │ │ │ ├── Analytics.jsx │ │ │ ├── ErrorBoundary │ │ │ │ ├── index.jsx │ │ │ │ └── styles.module.css │ │ │ ├── IcebreakerModal │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── PageHeader │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── PersonCard │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ ├── PrivateImage │ │ │ │ └── index.jsx │ │ │ ├── SpeakerCard │ │ │ │ ├── SpeakerCard.module.css │ │ │ │ └── index.jsx │ │ │ ├── SponsorCard │ │ │ │ ├── SponsorCard.module.css │ │ │ │ └── index.jsx │ │ │ ├── buttons │ │ │ │ ├── Button.jsx │ │ │ │ ├── Button.module.css │ │ │ │ └── index.js │ │ │ ├── chat │ │ │ │ ├── ChatContainer │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── ChatMessage │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── ChatRoomList │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── ChatRoomPreview │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── ChatSidebar │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── ChatThreadList │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── ChatWindow │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── MinimizedChatWindow │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── MobileChatContainer │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── MobileChatRoomWindow │ │ │ │ │ ├── MessageInput.jsx │ │ │ │ │ ├── MessageList.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── MobileChatSidebar │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── MobileChatWindow │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── ResponsiveChatContainer │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── SessionChatRoomList │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── TypingIndicator │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles.module.css │ │ │ │ └── index.js │ │ │ ├── forms │ │ │ │ └── TimeSelect │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.jsx │ │ │ ├── index.js │ │ │ ├── loading │ │ │ │ ├── LoadingState.jsx │ │ │ │ ├── USAGE.md │ │ │ │ ├── index.js │ │ │ │ └── styles │ │ │ │ │ └── LoadingState.module.css │ │ │ └── modals │ │ │ │ ├── ConfirmationModal │ │ │ │ ├── index.jsx │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ ├── auth │ │ │ │ ├── ForgotPasswordModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── schemas │ │ │ │ │ │ └── forgotPasswordSchema.js │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ ├── LoginModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── schemas │ │ │ │ │ │ └── loginSchema.js │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ └── SignupModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── schemas │ │ │ │ │ └── signupSchema.js │ │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ ├── event │ │ │ │ └── EventModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── schemas │ │ │ │ │ └── eventSchema.js │ │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ ├── organization │ │ │ │ ├── InviteUserModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── schemas │ │ │ │ │ │ └── inviteUserSchema.js │ │ │ │ │ └── styles │ │ │ │ │ │ └── index.module.css │ │ │ │ └── OrganizationModal │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── schemas │ │ │ │ │ └── organizationSchema.js │ │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ ├── profile │ │ │ │ └── EditAvatarModal │ │ │ │ │ ├── avatarOptions.js │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ └── session │ │ │ │ ├── AddEventUserModal │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ │ └── addEventUserSchema.js │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ ├── AddSpeakerModal │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ │ └── addSpeakerSchema.js │ │ │ │ └── styles │ │ │ │ │ └── index.module.css │ │ │ │ └── EditSessionModal │ │ │ │ ├── index.jsx │ │ │ │ ├── schemas │ │ │ │ └── editSessionSchema.js │ │ │ │ └── styles │ │ │ │ └── index.module.css │ │ ├── constants │ │ │ ├── speakerRoles.js │ │ │ ├── timezones.js │ │ │ └── usStates.js │ │ ├── hooks │ │ │ ├── formatDate.js │ │ │ ├── index.js │ │ │ ├── useChatScroll.js │ │ │ ├── useDMTyping.js │ │ │ ├── useEventStatusStyle.js │ │ │ ├── useGradientBadge.js │ │ │ ├── useIsMobile.js │ │ │ ├── useMobileInputHandler.js │ │ │ ├── useOpenThread.js │ │ │ ├── useRoomPresence.js │ │ │ ├── useSocketMessages.js │ │ │ └── useThreadFiltering.js │ │ └── utils │ │ │ ├── formatting.js │ │ │ ├── moderation.js │ │ │ ├── sorting.js │ │ │ └── timezone.js │ ├── stories │ │ ├── Button.stories.ts │ │ ├── Button.tsx │ │ ├── Configure.mdx │ │ ├── Header.stories.ts │ │ ├── Header.tsx │ │ ├── Page.stories.ts │ │ ├── Page.tsx │ │ ├── assets │ │ │ ├── accessibility.png │ │ │ ├── accessibility.svg │ │ │ ├── addon-library.png │ │ │ ├── assets.png │ │ │ ├── avif-test-image.avif │ │ │ ├── context.png │ │ │ ├── discord.svg │ │ │ ├── docs.png │ │ │ ├── figma-plugin.png │ │ │ ├── github.svg │ │ │ ├── share.png │ │ │ ├── styling.png │ │ │ ├── testing.png │ │ │ ├── theming.png │ │ │ ├── tutorials.svg │ │ │ └── youtube.svg │ │ ├── button.css │ │ ├── components │ │ │ └── Agenda │ │ │ │ ├── AgendaPage.stories.tsx │ │ │ │ ├── AgendaView.stories.tsx │ │ │ │ ├── DateNavigation.stories.tsx │ │ │ │ └── SessionCard.stories.tsx │ │ ├── header.css │ │ └── page.css │ └── styles │ │ ├── design-tokens.css │ │ ├── reset.css │ │ └── style-guide.md └── vite.config.js ├── manual_packages.txt ├── package.json └── scripts ├── README.md ├── database ├── export-schema.sh ├── json-to-dbml.py ├── manage-db.sh └── schema-query.sql ├── dev ├── start-local-dev-tmux.sh ├── start-preview-tmux.sh ├── start-redis-dev-tmux.sh ├── start-tailscale-dev-tmux.sh ├── stop-local-dev-tmux.sh ├── stop-preview-tmux.sh ├── stop-redis-dev-tmux.sh └── stop-tailscale-dev-tmux.sh └── testing ├── test-nginx-frontend.sh ├── test-redis-integration.sh ├── test-socketio-redis.py └── test_email_invitation.py /.env.development.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/.env.development.example -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/.env.example -------------------------------------------------------------------------------- /.gitguardian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/.gitguardian.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/.github/workflows/build-and-deploy-dev.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/.github/workflows/build-and-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/CLA.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-ATTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/LICENSE-ATTRIBUTION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/README.md -------------------------------------------------------------------------------- /backend/atria/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/.dockerignore -------------------------------------------------------------------------------- /backend/atria/.flaskenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/.flaskenv -------------------------------------------------------------------------------- /backend/atria/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/.gitignore -------------------------------------------------------------------------------- /backend/atria/.testenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/.testenv -------------------------------------------------------------------------------- /backend/atria/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/Dockerfile -------------------------------------------------------------------------------- /backend/atria/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/Makefile -------------------------------------------------------------------------------- /backend/atria/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/atria/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/app.py -------------------------------------------------------------------------------- /backend/atria/api/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/auth/__init__.py -------------------------------------------------------------------------------- /backend/atria/api/auth/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/auth/helpers.py -------------------------------------------------------------------------------- /backend/atria/api/auth/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/auth/jwt.py -------------------------------------------------------------------------------- /backend/atria/api/auth/jwt.py.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/auth/jwt.py.backup -------------------------------------------------------------------------------- /backend/atria/api/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/auth/views.py -------------------------------------------------------------------------------- /backend/atria/api/celery_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/celery_app.py -------------------------------------------------------------------------------- /backend/atria/api/commons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/atria/api/commons/apispec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/commons/apispec.py -------------------------------------------------------------------------------- /backend/atria/api/commons/avatar_presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/commons/avatar_presets.py -------------------------------------------------------------------------------- /backend/atria/api/commons/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/commons/decorators.py -------------------------------------------------------------------------------- /backend/atria/api/commons/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/commons/encryption.py -------------------------------------------------------------------------------- /backend/atria/api/commons/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/commons/pagination.py -------------------------------------------------------------------------------- /backend/atria/api/commons/rate_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/commons/rate_limit.py -------------------------------------------------------------------------------- /backend/atria/api/commons/socket_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/commons/socket_decorators.py -------------------------------------------------------------------------------- /backend/atria/api/commons/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/commons/streaming.py -------------------------------------------------------------------------------- /backend/atria/api/commons/templates/redoc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/commons/templates/redoc.j2 -------------------------------------------------------------------------------- /backend/atria/api/commons/templates/swagger.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/commons/templates/swagger.j2 -------------------------------------------------------------------------------- /backend/atria/api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/config.py -------------------------------------------------------------------------------- /backend/atria/api/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/config_test.py -------------------------------------------------------------------------------- /backend/atria/api/email_templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/email_templates/base.html -------------------------------------------------------------------------------- /backend/atria/api/email_templates/connection_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/email_templates/connection_request.html -------------------------------------------------------------------------------- /backend/atria/api/email_templates/email_verification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/email_templates/email_verification.html -------------------------------------------------------------------------------- /backend/atria/api/email_templates/event_invitation_existing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/email_templates/event_invitation_existing.html -------------------------------------------------------------------------------- /backend/atria/api/email_templates/event_invitation_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/email_templates/event_invitation_new.html -------------------------------------------------------------------------------- /backend/atria/api/email_templates/organization_invitation_existing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/email_templates/organization_invitation_existing.html -------------------------------------------------------------------------------- /backend/atria/api/email_templates/organization_invitation_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/email_templates/organization_invitation_new.html -------------------------------------------------------------------------------- /backend/atria/api/email_templates/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/email_templates/password_reset.html -------------------------------------------------------------------------------- /backend/atria/api/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/extensions.py -------------------------------------------------------------------------------- /backend/atria/api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/__init__.py -------------------------------------------------------------------------------- /backend/atria/api/models/blocklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/blocklist.py -------------------------------------------------------------------------------- /backend/atria/api/models/chat_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/chat_message.py -------------------------------------------------------------------------------- /backend/atria/api/models/chat_room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/chat_room.py -------------------------------------------------------------------------------- /backend/atria/api/models/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/connection.py -------------------------------------------------------------------------------- /backend/atria/api/models/direct_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/direct_message.py -------------------------------------------------------------------------------- /backend/atria/api/models/direct_message_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/direct_message_thread.py -------------------------------------------------------------------------------- /backend/atria/api/models/email_verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/email_verification.py -------------------------------------------------------------------------------- /backend/atria/api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/enums.py -------------------------------------------------------------------------------- /backend/atria/api/models/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/event.py -------------------------------------------------------------------------------- /backend/atria/api/models/event_invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/event_invitation.py -------------------------------------------------------------------------------- /backend/atria/api/models/event_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/event_user.py -------------------------------------------------------------------------------- /backend/atria/api/models/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/organization.py -------------------------------------------------------------------------------- /backend/atria/api/models/organization_invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/organization_invitation.py -------------------------------------------------------------------------------- /backend/atria/api/models/organization_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/organization_user.py -------------------------------------------------------------------------------- /backend/atria/api/models/password_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/password_reset.py -------------------------------------------------------------------------------- /backend/atria/api/models/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/session.py -------------------------------------------------------------------------------- /backend/atria/api/models/session_speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/session_speaker.py -------------------------------------------------------------------------------- /backend/atria/api/models/sponsor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/sponsor.py -------------------------------------------------------------------------------- /backend/atria/api/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/user.py -------------------------------------------------------------------------------- /backend/atria/api/models/user_encryption_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/user_encryption_key.py -------------------------------------------------------------------------------- /backend/atria/api/models/user_key_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/models/user_key_backup.py -------------------------------------------------------------------------------- /backend/atria/api/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/__init__.py -------------------------------------------------------------------------------- /backend/atria/api/routes/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/analytics.py -------------------------------------------------------------------------------- /backend/atria/api/routes/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/auth.py -------------------------------------------------------------------------------- /backend/atria/api/routes/chat_rooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/chat_rooms.py -------------------------------------------------------------------------------- /backend/atria/api/routes/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/connections.py -------------------------------------------------------------------------------- /backend/atria/api/routes/direct_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/direct_messages.py -------------------------------------------------------------------------------- /backend/atria/api/routes/event_invitations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/event_invitations.py -------------------------------------------------------------------------------- /backend/atria/api/routes/event_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/event_users.py -------------------------------------------------------------------------------- /backend/atria/api/routes/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/events.py -------------------------------------------------------------------------------- /backend/atria/api/routes/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/health.py -------------------------------------------------------------------------------- /backend/atria/api/routes/invitations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/invitations.py -------------------------------------------------------------------------------- /backend/atria/api/routes/moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/moderation.py -------------------------------------------------------------------------------- /backend/atria/api/routes/organization_invitations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/organization_invitations.py -------------------------------------------------------------------------------- /backend/atria/api/routes/organization_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/organization_users.py -------------------------------------------------------------------------------- /backend/atria/api/routes/organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/organizations.py -------------------------------------------------------------------------------- /backend/atria/api/routes/session_speakers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/session_speakers.py -------------------------------------------------------------------------------- /backend/atria/api/routes/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/sessions.py -------------------------------------------------------------------------------- /backend/atria/api/routes/sponsors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/sponsors.py -------------------------------------------------------------------------------- /backend/atria/api/routes/uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/uploads.py -------------------------------------------------------------------------------- /backend/atria/api/routes/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/routes/users.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/__init__.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/auth.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/chat.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/connection.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/dashboard.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/direct_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/direct_message.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/event.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/event_invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/event_invitation.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/event_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/event_user.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/invitation.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/moderation.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/organization.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/organization_invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/organization_invitation.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/organization_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/organization_user.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/pagination.py.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/pagination.py.backup -------------------------------------------------------------------------------- /backend/atria/api/schemas/privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/privacy.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/session.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/session_speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/session_speaker.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/sponsor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/sponsor.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/upload.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/user.py -------------------------------------------------------------------------------- /backend/atria/api/schemas/user_privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/schemas/user_privacy.py -------------------------------------------------------------------------------- /backend/atria/api/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/atria/api/services/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/auth.py -------------------------------------------------------------------------------- /backend/atria/api/services/cache_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/cache_service.py -------------------------------------------------------------------------------- /backend/atria/api/services/chat_room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/chat_room.py -------------------------------------------------------------------------------- /backend/atria/api/services/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/connection.py -------------------------------------------------------------------------------- /backend/atria/api/services/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/dashboard.py -------------------------------------------------------------------------------- /backend/atria/api/services/direct_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/direct_message.py -------------------------------------------------------------------------------- /backend/atria/api/services/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/email.py -------------------------------------------------------------------------------- /backend/atria/api/services/email_verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/email_verification.py -------------------------------------------------------------------------------- /backend/atria/api/services/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/event.py -------------------------------------------------------------------------------- /backend/atria/api/services/event_invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/event_invitation.py -------------------------------------------------------------------------------- /backend/atria/api/services/event_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/event_user.py -------------------------------------------------------------------------------- /backend/atria/api/services/event_user_with_email_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/event_user_with_email_example.py -------------------------------------------------------------------------------- /backend/atria/api/services/invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/invitation.py -------------------------------------------------------------------------------- /backend/atria/api/services/jaas_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/jaas_service.py -------------------------------------------------------------------------------- /backend/atria/api/services/moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/moderation.py -------------------------------------------------------------------------------- /backend/atria/api/services/mux_playback_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/mux_playback_service.py -------------------------------------------------------------------------------- /backend/atria/api/services/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/organization.py -------------------------------------------------------------------------------- /backend/atria/api/services/organization_invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/organization_invitation.py -------------------------------------------------------------------------------- /backend/atria/api/services/organization_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/organization_user.py -------------------------------------------------------------------------------- /backend/atria/api/services/password_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/password_reset.py -------------------------------------------------------------------------------- /backend/atria/api/services/presence_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/presence_service.py -------------------------------------------------------------------------------- /backend/atria/api/services/privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/privacy.py -------------------------------------------------------------------------------- /backend/atria/api/services/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/session.py -------------------------------------------------------------------------------- /backend/atria/api/services/session_speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/session_speaker.py -------------------------------------------------------------------------------- /backend/atria/api/services/sponsor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/sponsor.py -------------------------------------------------------------------------------- /backend/atria/api/services/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/storage.py -------------------------------------------------------------------------------- /backend/atria/api/services/typing_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/typing_service.py -------------------------------------------------------------------------------- /backend/atria/api/services/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/services/user.py -------------------------------------------------------------------------------- /backend/atria/api/sockets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/sockets/__init__.py -------------------------------------------------------------------------------- /backend/atria/api/sockets/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/sockets/chat.py -------------------------------------------------------------------------------- /backend/atria/api/sockets/chat_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/sockets/chat_notifications.py -------------------------------------------------------------------------------- /backend/atria/api/sockets/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/sockets/connections.py -------------------------------------------------------------------------------- /backend/atria/api/sockets/direct_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/sockets/direct_messages.py -------------------------------------------------------------------------------- /backend/atria/api/sockets/dm_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/sockets/dm_notifications.py -------------------------------------------------------------------------------- /backend/atria/api/sockets/presence_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/sockets/presence_notifications.py -------------------------------------------------------------------------------- /backend/atria/api/sockets/session_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/sockets/session_manager.py -------------------------------------------------------------------------------- /backend/atria/api/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/atria/api/tasks/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/tasks/example.py -------------------------------------------------------------------------------- /backend/atria/api/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/api/wsgi.py -------------------------------------------------------------------------------- /backend/atria/cookiecutter-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/cookiecutter-options.yml -------------------------------------------------------------------------------- /backend/atria/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/init.sh -------------------------------------------------------------------------------- /backend/atria/init.sh.local_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/init.sh.local_backup -------------------------------------------------------------------------------- /backend/atria/migrations/README: -------------------------------------------------------------------------------- 1 | Single-database configuration for Flask. 2 | -------------------------------------------------------------------------------- /backend/atria/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/migrations/alembic.ini -------------------------------------------------------------------------------- /backend/atria/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/migrations/env.py -------------------------------------------------------------------------------- /backend/atria/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/migrations/script.py.mako -------------------------------------------------------------------------------- /backend/atria/migrations/versions/add_event_scoped_threads_and_hiding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/migrations/versions/add_event_scoped_threads_and_hiding.py -------------------------------------------------------------------------------- /backend/atria/migrations/versions/add_privacy_settings_and_moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/migrations/versions/add_privacy_settings_and_moderation.py -------------------------------------------------------------------------------- /backend/atria/migrations/versions/fractional_display_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/migrations/versions/fractional_display_order.py -------------------------------------------------------------------------------- /backend/atria/migrations_old_20250616_200142/README: -------------------------------------------------------------------------------- 1 | Single-database configuration for Flask. 2 | -------------------------------------------------------------------------------- /backend/atria/migrations_old_20250616_200142/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/migrations_old_20250616_200142/alembic.ini -------------------------------------------------------------------------------- /backend/atria/migrations_old_20250616_200142/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/migrations_old_20250616_200142/env.py -------------------------------------------------------------------------------- /backend/atria/migrations_old_20250616_200142/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/migrations_old_20250616_200142/script.py.mako -------------------------------------------------------------------------------- /backend/atria/old_tests_backup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/old_tests_backup/README.md -------------------------------------------------------------------------------- /backend/atria/old_tests_backup/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/old_tests_backup/factories.py -------------------------------------------------------------------------------- /backend/atria/old_tests_backup/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/old_tests_backup/test_auth.py -------------------------------------------------------------------------------- /backend/atria/old_tests_backup/test_celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/old_tests_backup/test_celery.py -------------------------------------------------------------------------------- /backend/atria/old_tests_backup/test_factory_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/old_tests_backup/test_factory_debug.py -------------------------------------------------------------------------------- /backend/atria/old_tests_backup/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/old_tests_backup/test_user.py -------------------------------------------------------------------------------- /backend/atria/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/pytest.ini -------------------------------------------------------------------------------- /backend/atria/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/requirements.txt -------------------------------------------------------------------------------- /backend/atria/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/run_tests.sh -------------------------------------------------------------------------------- /backend/atria/scripts/update_sponsor_tiers_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/scripts/update_sponsor_tiers_colors.py -------------------------------------------------------------------------------- /backend/atria/seeders/comprehensive_seed_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/seeders/comprehensive_seed_data.py -------------------------------------------------------------------------------- /backend/atria/seeders/comprehensive_seed_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/seeders/comprehensive_seed_db.py -------------------------------------------------------------------------------- /backend/atria/seeders/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/seeders/constants.py -------------------------------------------------------------------------------- /backend/atria/seeders/enhanced_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/seeders/enhanced_chat.py -------------------------------------------------------------------------------- /backend/atria/seeders/enhanced_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/seeders/enhanced_sessions.py -------------------------------------------------------------------------------- /backend/atria/seeders/long_dm_conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/seeders/long_dm_conversation.py -------------------------------------------------------------------------------- /backend/atria/seeders/seed_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/seeders/seed_data.py -------------------------------------------------------------------------------- /backend/atria/seeders/seed_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/seeders/seed_db.py -------------------------------------------------------------------------------- /backend/atria/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/setup.py -------------------------------------------------------------------------------- /backend/atria/tests/TEST_INVENTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/TEST_INVENTORY.md -------------------------------------------------------------------------------- /backend/atria/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/atria/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/conftest.py -------------------------------------------------------------------------------- /backend/atria/tests/factories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/factories/__init__.py -------------------------------------------------------------------------------- /backend/atria/tests/factories/chat_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/factories/chat_factory.py -------------------------------------------------------------------------------- /backend/atria/tests/factories/connection_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/factories/connection_factory.py -------------------------------------------------------------------------------- /backend/atria/tests/factories/direct_message_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/factories/direct_message_factory.py -------------------------------------------------------------------------------- /backend/atria/tests/factories/event_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/factories/event_factory.py -------------------------------------------------------------------------------- /backend/atria/tests/factories/invitation_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/factories/invitation_factory.py -------------------------------------------------------------------------------- /backend/atria/tests/factories/organization_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/factories/organization_factory.py -------------------------------------------------------------------------------- /backend/atria/tests/factories/session_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/factories/session_factory.py -------------------------------------------------------------------------------- /backend/atria/tests/factories/sponsor_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/factories/sponsor_factory.py -------------------------------------------------------------------------------- /backend/atria/tests/factories/user_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/factories/user_factory.py -------------------------------------------------------------------------------- /backend/atria/tests/test_commons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/atria/tests/test_commons/test_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_commons/test_encryption.py -------------------------------------------------------------------------------- /backend/atria/tests/test_commons/test_jaas_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_commons/test_jaas_streaming.py -------------------------------------------------------------------------------- /backend/atria/tests/test_commons/test_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_commons/test_streaming.py -------------------------------------------------------------------------------- /backend/atria/tests/test_integration/test_auth_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_integration/test_auth_integration.py -------------------------------------------------------------------------------- /backend/atria/tests/test_integration/test_chat_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_integration/test_chat_integration.py -------------------------------------------------------------------------------- /backend/atria/tests/test_integration/test_connection_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_integration/test_connection_integration.py -------------------------------------------------------------------------------- /backend/atria/tests/test_integration/test_dm_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_integration/test_dm_integration.py -------------------------------------------------------------------------------- /backend/atria/tests/test_integration/test_event_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_integration/test_event_integration.py -------------------------------------------------------------------------------- /backend/atria/tests/test_integration/test_jitsi_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_integration/test_jitsi_integration.py -------------------------------------------------------------------------------- /backend/atria/tests/test_integration/test_moderation_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_integration/test_moderation_integration.py -------------------------------------------------------------------------------- /backend/atria/tests/test_integration/test_organization_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_integration/test_organization_integration.py -------------------------------------------------------------------------------- /backend/atria/tests/test_integration/test_session_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_integration/test_session_integration.py -------------------------------------------------------------------------------- /backend/atria/tests/test_integration/test_sponsor_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_integration/test_sponsor_integration.py -------------------------------------------------------------------------------- /backend/atria/tests/test_models/__init__.py: -------------------------------------------------------------------------------- 1 | """Test models package.""" -------------------------------------------------------------------------------- /backend/atria/tests/test_models/test_direct_message_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_models/test_direct_message_model.py -------------------------------------------------------------------------------- /backend/atria/tests/test_models/test_direct_message_thread_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_models/test_direct_message_thread_model.py -------------------------------------------------------------------------------- /backend/atria/tests/test_models/test_event_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_models/test_event_model.py -------------------------------------------------------------------------------- /backend/atria/tests/test_models/test_event_user_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_models/test_event_user_model.py -------------------------------------------------------------------------------- /backend/atria/tests/test_models/test_organization_jaas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_models/test_organization_jaas.py -------------------------------------------------------------------------------- /backend/atria/tests/test_models/test_organization_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_models/test_organization_model.py -------------------------------------------------------------------------------- /backend/atria/tests/test_models/test_organization_mux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_models/test_organization_mux.py -------------------------------------------------------------------------------- /backend/atria/tests/test_models/test_organization_user_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_models/test_organization_user_model.py -------------------------------------------------------------------------------- /backend/atria/tests/test_models/test_session_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_models/test_session_model.py -------------------------------------------------------------------------------- /backend/atria/tests/test_models/test_session_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_models/test_session_streaming.py -------------------------------------------------------------------------------- /backend/atria/tests/test_models/test_user_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_models/test_user_model.py -------------------------------------------------------------------------------- /backend/atria/tests/test_services/test_jaas_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_services/test_jaas_service.py -------------------------------------------------------------------------------- /backend/atria/tests/test_services/test_mux_playback_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_services/test_mux_playback_service.py -------------------------------------------------------------------------------- /backend/atria/tests/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tests/test_setup.py -------------------------------------------------------------------------------- /backend/atria/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/atria/tox.ini -------------------------------------------------------------------------------- /backend/scripts/chartdb_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/scripts/chartdb_metadata.json -------------------------------------------------------------------------------- /backend/scripts/export_chartdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/scripts/export_chartdb.sh -------------------------------------------------------------------------------- /backend/scripts/export_chartdb_metadata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backend/scripts/export_chartdb_metadata.sql -------------------------------------------------------------------------------- /backups/api.js.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/backups/api.js.backup -------------------------------------------------------------------------------- /database-schema.dbml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/database-schema.dbml -------------------------------------------------------------------------------- /database-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/database-schema.json -------------------------------------------------------------------------------- /deploy/.npm_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/deploy/.npm_config -------------------------------------------------------------------------------- /deploy/Dockerfile.backend.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/deploy/Dockerfile.backend.prod -------------------------------------------------------------------------------- /deploy/Dockerfile.frontend.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/deploy/Dockerfile.frontend.prod -------------------------------------------------------------------------------- /deploy/docker-compose-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/deploy/docker-compose-prod.yml -------------------------------------------------------------------------------- /deploy/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/deploy/init.sh -------------------------------------------------------------------------------- /dev-environment-chooser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/dev-environment-chooser.sh -------------------------------------------------------------------------------- /docker-compose.dev-vite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/docker-compose.dev-vite.yml -------------------------------------------------------------------------------- /docker-compose.local-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/docker-compose.local-dev.yml -------------------------------------------------------------------------------- /docker-compose.preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/docker-compose.preview.yml -------------------------------------------------------------------------------- /docker-compose.production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/docker-compose.production.yml -------------------------------------------------------------------------------- /docker-compose.redis-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/docker-compose.redis-dev.yml -------------------------------------------------------------------------------- /docker-compose.tailscale-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/docker-compose.tailscale-dev.yml -------------------------------------------------------------------------------- /docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/docker-compose.test.yml -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/.storybook/main.ts -------------------------------------------------------------------------------- /frontend/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/.storybook/preview.ts -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/create-styles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/create-styles.sh -------------------------------------------------------------------------------- /frontend/csp-header.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/csp-header.conf -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/jsconfig.json -------------------------------------------------------------------------------- /frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/nginx.conf -------------------------------------------------------------------------------- /frontend/nginx.dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/nginx.dev.conf -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/favicon/favicon.ico -------------------------------------------------------------------------------- /frontend/public/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/favicon/site.webmanifest -------------------------------------------------------------------------------- /frontend/public/fonts/abeezee-latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/fonts/abeezee-latin.woff2 -------------------------------------------------------------------------------- /frontend/public/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/fonts/fonts.css -------------------------------------------------------------------------------- /frontend/public/fonts/mplus2-700-latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/fonts/mplus2-700-latin.woff2 -------------------------------------------------------------------------------- /frontend/public/images/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/images/og-image.png -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/sitemap.xml -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/scripts/build-with-prerender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/scripts/build-with-prerender.sh -------------------------------------------------------------------------------- /frontend/scripts/prerender.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/scripts/prerender.mjs -------------------------------------------------------------------------------- /frontend/security-headers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/security-headers.conf -------------------------------------------------------------------------------- /frontend/src/app/features/api/baseQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/api/baseQuery.js -------------------------------------------------------------------------------- /frontend/src/app/features/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/api/index.js -------------------------------------------------------------------------------- /frontend/src/app/features/auth/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/auth/api.js -------------------------------------------------------------------------------- /frontend/src/app/features/chat/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/chat/api.js -------------------------------------------------------------------------------- /frontend/src/app/features/eventInvitations/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/eventInvitations/api.js -------------------------------------------------------------------------------- /frontend/src/app/features/events/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/events/api.js -------------------------------------------------------------------------------- /frontend/src/app/features/invitations/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/invitations/api.js -------------------------------------------------------------------------------- /frontend/src/app/features/moderation/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/moderation/api.js -------------------------------------------------------------------------------- /frontend/src/app/features/networking/TBD - api-simplified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/networking/TBD - api-simplified.js -------------------------------------------------------------------------------- /frontend/src/app/features/networking/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/networking/api.js -------------------------------------------------------------------------------- /frontend/src/app/features/networking/socketClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/networking/socketClient.js -------------------------------------------------------------------------------- /frontend/src/app/features/organizations/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/organizations/api.js -------------------------------------------------------------------------------- /frontend/src/app/features/sessions/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/sessions/api.js -------------------------------------------------------------------------------- /frontend/src/app/features/sponsors/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/sponsors/api.js -------------------------------------------------------------------------------- /frontend/src/app/features/uploads/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/uploads/api.js -------------------------------------------------------------------------------- /frontend/src/app/features/users/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/features/users/api.js -------------------------------------------------------------------------------- /frontend/src/app/router/guards/AuthGuard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/router/guards/AuthGuard.jsx -------------------------------------------------------------------------------- /frontend/src/app/router/guards/PublicGuard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/router/guards/PublicGuard.jsx -------------------------------------------------------------------------------- /frontend/src/app/router/layouts/AppLayout/AppLayout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/router/layouts/AppLayout/AppLayout.module.css -------------------------------------------------------------------------------- /frontend/src/app/router/layouts/AppLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/router/layouts/AppLayout/index.jsx -------------------------------------------------------------------------------- /frontend/src/app/router/layouts/RootLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/router/layouts/RootLayout/index.jsx -------------------------------------------------------------------------------- /frontend/src/app/router/routes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/router/routes/index.jsx -------------------------------------------------------------------------------- /frontend/src/app/router/routes/protectedRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/router/routes/protectedRoutes.jsx -------------------------------------------------------------------------------- /frontend/src/app/router/routes/publicRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/router/routes/publicRoutes.jsx -------------------------------------------------------------------------------- /frontend/src/app/services/encryptionServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/services/encryptionServices.js -------------------------------------------------------------------------------- /frontend/src/app/store/authSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/store/authSlice.js -------------------------------------------------------------------------------- /frontend/src/app/store/chatSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/store/chatSlice.js -------------------------------------------------------------------------------- /frontend/src/app/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/store/index.js -------------------------------------------------------------------------------- /frontend/src/app/store/uiSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/app/store/uiSlice.js -------------------------------------------------------------------------------- /frontend/src/assets/atria-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/assets/atria-logo.svg -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/src/lib/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/lib/axios.js -------------------------------------------------------------------------------- /frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/main.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Agenda/AgendaView/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Agenda/AgendaView/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Agenda/AgendaView/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Agenda/AgendaView/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Agenda/DateNavigation/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Agenda/DateNavigation/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Agenda/DateNavigation/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Agenda/DateNavigation/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Agenda/SessionCard/SpeakerItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Agenda/SessionCard/SpeakerItem.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Agenda/SessionCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Agenda/SessionCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Agenda/SessionCard/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Agenda/SessionCard/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Agenda/hooks/useSessionLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Agenda/hooks/useSessionLayout.js -------------------------------------------------------------------------------- /frontend/src/pages/Agenda/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Agenda/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Agenda/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Agenda/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Auth/EmailVerification/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Auth/EmailVerification/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Auth/EmailVerification/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Auth/EmailVerification/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Auth/ResetPassword/components/ErrorState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Auth/ResetPassword/components/ErrorState.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Auth/ResetPassword/components/LoadingState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Auth/ResetPassword/components/LoadingState.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Auth/ResetPassword/components/PageLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Auth/ResetPassword/components/PageLayout.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Auth/ResetPassword/components/ResetForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Auth/ResetPassword/components/ResetForm.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Auth/ResetPassword/components/SuccessState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Auth/ResetPassword/components/SuccessState.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Auth/ResetPassword/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Auth/ResetPassword/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Auth/ResetPassword/schemas/resetPasswordSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Auth/ResetPassword/schemas/resetPasswordSchema.js -------------------------------------------------------------------------------- /frontend/src/pages/Auth/ResetPassword/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Auth/ResetPassword/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/ConnectionsSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/ConnectionsSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/ConnectionsSection/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/ConnectionsSection/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/EventsSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/EventsSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/EventsSection/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/EventsSection/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/InvitationsSection/InvitationCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/InvitationsSection/InvitationCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/InvitationsSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/InvitationsSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/InvitationsSection/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/InvitationsSection/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/NewsSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/NewsSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/NewsSection/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/NewsSection/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/OrganizationsSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/OrganizationsSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/OrganizationsSection/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/OrganizationsSection/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/ProfileHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/ProfileHeader/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/ProfileHeader/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/ProfileHeader/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/StatsGrid/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/StatsGrid/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/StatsGrid/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/StatsGrid/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/StatsSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/StatsSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/StatsSection/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/StatsSection/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/shared/responsive.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/shared/responsive.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Dashboard/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Errors/ErrorPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Errors/ErrorPage.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Errors/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Errors/NotFound.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Errors/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Errors/styles.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/AttendeesManager/AttendeeCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/AttendeesManager/AttendeeCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/AttendeesManager/AttendeeRow/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/AttendeesManager/AttendeeRow/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/AttendeesManager/AttendeesList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/AttendeesManager/AttendeesList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/AttendeesManager/HeaderSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/AttendeesManager/HeaderSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/AttendeesManager/InviteModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/AttendeesManager/InviteModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/AttendeesManager/RoleUpdateModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/AttendeesManager/RoleUpdateModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/AttendeesManager/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/AttendeesManager/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/AttendeesManager/schemas/attendeeSchemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/AttendeesManager/schemas/attendeeSchemas.js -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/AttendeesManager/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/AttendeesManager/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/EventSettings/BasicInfoSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/EventSettings/BasicInfoSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/EventSettings/BrandingSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/EventSettings/BrandingSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/EventSettings/ContentSections/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/EventSettings/ContentSections/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/EventSettings/DangerZoneSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/EventSettings/DangerZoneSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/EventSettings/NetworkingSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/EventSettings/NetworkingSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/EventSettings/VenueSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/EventSettings/VenueSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/EventSettings/VenueSection/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/EventSettings/VenueSection/styles.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/EventSettings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/EventSettings/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/EventSettings/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/EventSettings/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/NetworkingManager/ChatRoomModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/NetworkingManager/ChatRoomModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/NetworkingManager/ChatRoomRow/MobileCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/NetworkingManager/ChatRoomRow/MobileCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/NetworkingManager/ChatRoomRow/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/NetworkingManager/ChatRoomRow/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/NetworkingManager/ChatRoomsList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/NetworkingManager/ChatRoomsList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/NetworkingManager/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/NetworkingManager/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/NetworkingManager/schemas/chatRoomSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/NetworkingManager/schemas/chatRoomSchema.js -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/NetworkingManager/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/NetworkingManager/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SessionManager/SessionCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SessionManager/SessionCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SessionManager/SessionCardMobile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SessionManager/SessionCardMobile/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SessionManager/SessionEmptyState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SessionManager/SessionEmptyState.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SessionManager/SessionErrorState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SessionManager/SessionErrorState.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SessionManager/SessionList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SessionManager/SessionList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SessionManager/SessionManagerHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SessionManager/SessionManagerHeader.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SessionManager/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SessionManager/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SessionManager/schemas/sessionCardSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SessionManager/schemas/sessionCardSchema.js -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SessionManager/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SessionManager/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SpeakersManager/AddSpeakerModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SpeakersManager/AddSpeakerModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SpeakersManager/SpeakerCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SpeakersManager/SpeakerCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SpeakersManager/SpeakerEditModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SpeakersManager/SpeakerEditModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SpeakersManager/SpeakerRow/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SpeakersManager/SpeakerRow/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SpeakersManager/SpeakerRow/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SpeakersManager/SpeakerRow/styles.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SpeakersManager/SpeakersList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SpeakersManager/SpeakersList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SpeakersManager/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SpeakersManager/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SpeakersManager/schemas/speakerSchemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SpeakersManager/schemas/speakerSchemas.js -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SpeakersManager/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SpeakersManager/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SponsorsManager/DroppableTier/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SponsorsManager/DroppableTier/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SponsorsManager/OLD_SponsorRow/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SponsorsManager/OLD_SponsorRow/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SponsorsManager/SponsorCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SponsorsManager/SponsorCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SponsorsManager/SponsorModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SponsorsManager/SponsorModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SponsorsManager/SponsorsHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SponsorsManager/SponsorsHeader/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SponsorsManager/SponsorsList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SponsorsManager/SponsorsList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SponsorsManager/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SponsorsManager/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SponsorsManager/schemas/sponsorSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SponsorsManager/schemas/sponsorSchema.js -------------------------------------------------------------------------------- /frontend/src/pages/EventAdmin/SponsorsManager/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventAdmin/SponsorsManager/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/EventInfo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/EventInfo/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/EventInfo/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/EventInfo/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/FAQ/FAQItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/FAQ/FAQItem.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/FAQ/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/FAQ/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/FAQ/styles/FAQItem.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/FAQ/styles/FAQItem.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/FAQ/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/FAQ/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/Hero/EventHeroContent.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/Hero/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/Hero/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/Hero/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/Hero/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/Highlights/HighlightCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/Highlights/HighlightCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/Highlights/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/Highlights/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/Highlights/styles/HighlightCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/Highlights/styles/HighlightCard.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/Highlights/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/Highlights/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/Welcome/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/Welcome/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/Welcome/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/Welcome/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/EventHome/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/EventHome/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/AttendeeEventCard/index.js: -------------------------------------------------------------------------------- 1 | export { AttendeeEventCard } from './index.jsx'; -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/AttendeeEventCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/EventsList/AttendeeEventCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/EmptyState/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/EventsList/EmptyState/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/EventCard/index.js: -------------------------------------------------------------------------------- 1 | export { EventCard } from './index.jsx'; -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/EventCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/EventsList/EventCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/EventCard/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/EventsList/EventCard/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/EventInvitationCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/EventsList/EventInvitationCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/EventInvitationCard/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/EventsList/EventInvitationCard/styles.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/EventSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/EventsList/EventSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/index.js: -------------------------------------------------------------------------------- 1 | export { EventsList } from './index.jsx'; -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/EventsList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/EventsList/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Events/EventsList/utils/eventCategorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/EventsList/utils/eventCategorization.js -------------------------------------------------------------------------------- /frontend/src/pages/Events/OrganizationEvents/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/OrganizationEvents/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Events/OrganizationEvents/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Events/OrganizationEvents/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Invitations/AcceptInvitation/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Invitations/AcceptInvitation/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Invitations/AcceptInvitation/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Invitations/AcceptInvitation/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/App.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/AudienceCards/AudienceCards.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/AudienceCards/AudienceCards.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/AudienceCards/audienceData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/AudienceCards/audienceData.js -------------------------------------------------------------------------------- /frontend/src/pages/Landing/AudienceCards/components/AudienceCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/AudienceCards/components/AudienceCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/AudienceCards/components/SectionHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/AudienceCards/components/SectionHeader.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/AudienceCards/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/AudienceCards/components/index.js -------------------------------------------------------------------------------- /frontend/src/pages/Landing/AudienceCards/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/AudienceCards/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/BrandExperience/BrandExperience.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/BrandExperience/BrandExperience.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/BrandExperience/components/BrandHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/BrandExperience/components/BrandHeader.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/BrandExperience/components/DashboardView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/BrandExperience/components/DashboardView.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/BrandExperience/components/EventView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/BrandExperience/components/EventView.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/BrandExperience/components/EventView.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/BrandExperience/components/EventView.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/BrandExperience/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/BrandExperience/components/index.js -------------------------------------------------------------------------------- /frontend/src/pages/Landing/BrandExperience/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/BrandExperience/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/COMPONENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/COMPONENT_GUIDE.md -------------------------------------------------------------------------------- /frontend/src/pages/Landing/CallToAction/CallToAction.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/CallToAction/CallToAction.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/CallToAction/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/CallToAction/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ConnectionImpact/ConnectionImpact.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ConnectionImpact/ConnectionImpact.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ConnectionImpact/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ConnectionImpact/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/Footer/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/Footer/Footer.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/Footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/Footer/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/Hero/Hero.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/Hero/Hero.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/Hero/drape-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/Hero/drape-bottom.svg -------------------------------------------------------------------------------- /frontend/src/pages/Landing/Hero/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/Hero/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/Hero/wave-drape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/Hero/wave-drape.svg -------------------------------------------------------------------------------- /frontend/src/pages/Landing/Landing.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/Landing.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/OpenSourceSplit/OpenSourceSplit.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/OpenSourceSplit/OpenSourceSplit.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/OpenSourceSplit/components/IntroPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/OpenSourceSplit/components/IntroPanel.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/OpenSourceSplit/components/OptionPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/OpenSourceSplit/components/OptionPanel.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/OpenSourceSplit/components/PhilosophyPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/OpenSourceSplit/components/PhilosophyPanel.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/OpenSourceSplit/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/OpenSourceSplit/components/index.js -------------------------------------------------------------------------------- /frontend/src/pages/Landing/OpenSourceSplit/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/OpenSourceSplit/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/PlatformDemo/PlatformDemo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/PlatformDemo/PlatformDemo.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/PlatformDemo/components/AgendaDemo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/PlatformDemo/components/AgendaDemo/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/PlatformDemo/components/SessionDemo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/PlatformDemo/components/SessionDemo/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/PlatformDemo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/PlatformDemo/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ProblemStatement/ProblemStatement.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ProblemStatement/ProblemStatement.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ProblemStatement/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ProblemStatement/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/TechIntegrations/TechIntegrations.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/TechIntegrations/TechIntegrations.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/TechIntegrations/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/TechIntegrations/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/_variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/_variables.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/animations/BackgroundEffects/FloatingShapes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/animations/BackgroundEffects/FloatingShapes.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/animations/ScrollEffects/ScrollIndicator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/animations/ScrollEffects/ScrollIndicator.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/animations/TextEffects/ReadingSpeedReveal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/animations/TextEffects/ReadingSpeedReveal.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/common/Wrappers/SectionWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/common/Wrappers/SectionWrapper.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/common/Wrappers/SectionWrapper.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/common/Wrappers/SectionWrapper.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/sections/Hero/HeroSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/sections/Hero/HeroSection.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/sections/Hero/HeroSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/sections/Hero/HeroSection.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/shared/MagneticButton/MagneticButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/shared/MagneticButton/MagneticButton.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/shared/MagneticButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/shared/MagneticButton/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/shared/useModalManager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/shared/useModalManager.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Buttons/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Buttons/Button.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Buttons/Button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Buttons/Button.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Cards/EventCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Cards/EventCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Cards/EventCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Cards/EventCard.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Cards/FeatureCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Cards/FeatureCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Cards/FeatureCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Cards/FeatureCard.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Cards/PlatformCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Cards/PlatformCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Cards/PlatformCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Cards/PlatformCard.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Cards/TimeSlotCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Cards/TimeSlotCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Cards/TimeSlotCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Cards/TimeSlotCard.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Layouts/AgendaLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Layouts/AgendaLayout.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Layouts/AgendaLayout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Layouts/AgendaLayout.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Navigation/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Navigation/NavBar.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Navigation/NavBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Navigation/NavBar.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/NetworkVisualization/NetworkGraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/NetworkVisualization/NetworkGraph.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/NetworkVisualization/NetworkGraph.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/NetworkVisualization/NetworkGraph.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Stats/AnimatedStatCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Stats/AnimatedStatCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Stats/AnimatedStatCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Stats/AnimatedStatCard.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Stats/StatsCounter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Stats/StatsCounter.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Testimonials/TestimonialCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Testimonials/TestimonialCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Testimonials/TestimonialCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Testimonials/TestimonialCard.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing/ui/Typography/ScrambleText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing/ui/Typography/ScrambleText.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Features/FeatureCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Features/FeatureCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Features/FeatureCarousel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Features/FeatureCarousel.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Features/FeatureGrid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Features/FeatureGrid.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Features/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Features/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Features/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Features/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Hero/HeroActions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Hero/HeroActions.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Hero/HeroTagline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Hero/HeroTagline.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Hero/HeroTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Hero/HeroTitle.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Hero/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Hero/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Hero/styles/HeroActions.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Hero/styles/HeroActions.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Hero/styles/HeroTagline.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Hero/styles/HeroTagline.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Hero/styles/HeroTitle.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Hero/styles/HeroTitle.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Hero/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Hero/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Stats/StatItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Stats/StatItem.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Stats/StatsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Stats/StatsList.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Stats/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Stats/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Stats/styles/StatItem.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Stats/styles/StatItem.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Stats/styles/StatsList.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Stats/styles/StatsList.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Stats/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Stats/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Testimonials/TestimonialCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Testimonials/TestimonialCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Testimonials/TestimonialContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Testimonials/TestimonialContent.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Testimonials/TestimonialImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Testimonials/TestimonialImage.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Testimonials/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Testimonials/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/Testimonials/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/Testimonials/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Landing_backup_v2/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Landing_backup_v2/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Navigation/EventNav/EventNav.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Navigation/EventNav/EventNav.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Navigation/EventNav/components/AdminSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Navigation/EventNav/components/AdminSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Navigation/EventNav/components/EventLinks/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Navigation/EventNav/components/EventLinks/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Navigation/EventNav/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Navigation/EventNav/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Navigation/TopNav/TopNav.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Navigation/TopNav/TopNav.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Navigation/TopNav/components/CenterContent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Navigation/TopNav/components/CenterContent/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Navigation/TopNav/components/MenuButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Navigation/TopNav/components/MenuButton/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Navigation/TopNav/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Navigation/TopNav/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Navigation/constants/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Navigation/constants/routes.js -------------------------------------------------------------------------------- /frontend/src/pages/Navigation/hooks/useNavigationTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Navigation/hooks/useNavigationTitle.js -------------------------------------------------------------------------------- /frontend/src/pages/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Navigation/index.js -------------------------------------------------------------------------------- /frontend/src/pages/Network/ConnectionCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Network/ConnectionCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Network/ConnectionCard/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Network/ConnectionCard/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Network/ConnectionRow/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Network/ConnectionRow/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Network/ConnectionRow/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Network/ConnectionRow/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Network/ConnectionsList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Network/ConnectionsList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Network/ConnectionsList/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Network/ConnectionsList/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Network/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Network/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Network/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Network/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Networking/AttendeesGrid/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/AttendeesGrid/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Networking/AttendeesGrid/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/AttendeesGrid/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Networking/ChatArea/ChatRoom/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/ChatArea/ChatRoom/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Networking/ChatArea/ChatRoom/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/ChatArea/ChatRoom/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Networking/ChatArea/DeleteMessageModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/ChatArea/DeleteMessageModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Networking/ChatArea/MessageBubble/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/ChatArea/MessageBubble/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Networking/ChatArea/MessageInput/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/ChatArea/MessageInput/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Networking/ChatArea/MessageList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/ChatArea/MessageList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Networking/ChatArea/MessageList/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/ChatArea/MessageList/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Networking/ChatArea/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/ChatArea/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Networking/ChatArea/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/ChatArea/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Networking/RequestsList/RequestCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/RequestsList/RequestCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Networking/RequestsList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/RequestsList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Networking/RequestsList/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/RequestsList/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Networking/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Networking/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Networking/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/NewUserLanding/ActionCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/NewUserLanding/ActionCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/NewUserLanding/NewUserLanding.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/NewUserLanding/NewUserLanding.jsx -------------------------------------------------------------------------------- /frontend/src/pages/NewUserLanding/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/NewUserLanding/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/NewUserLanding/styles/ActionCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/NewUserLanding/styles/ActionCard.module.css -------------------------------------------------------------------------------- /frontend/src/pages/NewUserLanding/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/NewUserLanding/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Organizations/CreateOrganization/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Organizations/CreateOrganization/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Organizations/OrganizationDashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Organizations/OrganizationDashboard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Organizations/OrganizationDetails/MemberLIst/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Organizations/OrganizationDetails/MemberLIst/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Organizations/OrganizationsList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Organizations/OrganizationsList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Organizations/OrganizationsList/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Organizations/OrganizationsList/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Profile/AboutSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/AboutSection/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Profile/AboutSection/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/AboutSection/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Profile/ActivityOverview/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/ActivityOverview/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Profile/ActivityOverview/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/ActivityOverview/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Profile/ProfessionalInfo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/ProfessionalInfo/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Profile/ProfessionalInfo/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/ProfessionalInfo/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Profile/ProfileHero/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/ProfileHero/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Profile/ProfileHero/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/ProfileHero/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Profile/SocialLinks/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/SocialLinks/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Profile/SocialLinks/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/SocialLinks/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Profile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Profile/schemas/profileSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/schemas/profileSchema.js -------------------------------------------------------------------------------- /frontend/src/pages/Profile/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Profile/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Roadmap/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Roadmap/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Roadmap/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Roadmap/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionChat/ChatRoomView/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionChat/ChatRoomView/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionChat/ChatTabs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionChat/ChatTabs/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionChat/ChatTabs/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionChat/ChatTabs/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionChat/SessionChatHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionChat/SessionChatHeader/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionChat/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionChat/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionChat/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionChat/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionDetails/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionDetails/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionDetails/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionDetails/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionDisplay/SessionCountdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionDisplay/SessionCountdown.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionDisplay/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionDisplay/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionDisplay/players/JitsiPlayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionDisplay/players/JitsiPlayer.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionDisplay/players/MuxPlayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionDisplay/players/MuxPlayer.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionDisplay/players/OtherLinkCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionDisplay/players/OtherLinkCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionDisplay/players/VimeoPlayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionDisplay/players/VimeoPlayer.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionDisplay/players/ZoomJoinCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionDisplay/players/ZoomJoinCard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionDisplay/players/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionDisplay/players/index.js -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionDisplay/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionDisplay/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionPending/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionPending/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionPending/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionPending/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionSpeakers/SpeakerCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionSpeakers/SpeakerCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionSpeakers/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionSpeakers/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SessionSpeakers/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SessionSpeakers/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Session/SetupSession/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SetupSession/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/SetupSession/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/SetupSession/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Session/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Session/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Session/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Settings/components/PrivacySettings/EmailSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Settings/components/PrivacySettings/EmailSection.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Settings/components/PrivacySettings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Settings/components/PrivacySettings/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Settings/components/PrivacySettings/styles/index.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/pages/Settings/components/SecuritySettings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Settings/components/SecuritySettings/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Settings/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Settings/schemas/privacySchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Settings/schemas/privacySchema.js -------------------------------------------------------------------------------- /frontend/src/pages/Settings/schemas/securitySchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Settings/schemas/securitySchema.js -------------------------------------------------------------------------------- /frontend/src/pages/Settings/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Settings/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Speakers/Speakers.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Speakers/Speakers.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Speakers/SpeakersList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Speakers/SpeakersList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Speakers/SpeakersList/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Speakers/SpeakersList/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Speakers/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Speakers/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Sponsors/Sponsors.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Sponsors/Sponsors.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Sponsors/SponsorsList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Sponsors/SponsorsList/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Sponsors/SponsorsList/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Sponsors/SponsorsList/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/pages/Sponsors/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/pages/Sponsors/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/Analytics.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/Analytics.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/ErrorBoundary/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/ErrorBoundary/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/ErrorBoundary/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/ErrorBoundary/styles.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/IcebreakerModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/IcebreakerModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/IcebreakerModal/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/IcebreakerModal/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/PageHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/PageHeader/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/PageHeader/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/PageHeader/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/PersonCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/PersonCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/PersonCard/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/PersonCard/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/PrivateImage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/PrivateImage/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/SpeakerCard/SpeakerCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/SpeakerCard/SpeakerCard.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/SpeakerCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/SpeakerCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/SponsorCard/SponsorCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/SponsorCard/SponsorCard.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/SponsorCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/SponsorCard/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/buttons/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/buttons/Button.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/buttons/Button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/buttons/Button.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/buttons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/buttons/index.js -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/ChatContainer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/ChatContainer/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/ChatMessage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/ChatMessage/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/ChatMessage/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/ChatMessage/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/ChatRoomList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/ChatRoomList/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/ChatRoomPreview/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/ChatRoomPreview/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/ChatSidebar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/ChatSidebar/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/ChatSidebar/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/ChatSidebar/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/ChatThreadList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/ChatThreadList/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/ChatWindow/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/ChatWindow/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/ChatWindow/styles/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/ChatWindow/styles/index.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/MinimizedChatWindow/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/MinimizedChatWindow/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/MobileChatContainer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/MobileChatContainer/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/MobileChatRoomWindow/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/MobileChatRoomWindow/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/MobileChatSidebar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/MobileChatSidebar/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/MobileChatWindow/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/MobileChatWindow/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/ResponsiveChatContainer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/ResponsiveChatContainer/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/SessionChatRoomList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/SessionChatRoomList/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/TypingIndicator/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/TypingIndicator/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/TypingIndicator/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/TypingIndicator/styles.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/chat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/chat/index.js -------------------------------------------------------------------------------- /frontend/src/shared/components/forms/TimeSelect/index.js: -------------------------------------------------------------------------------- 1 | export { TimeSelect } from './index.jsx'; -------------------------------------------------------------------------------- /frontend/src/shared/components/forms/TimeSelect/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/forms/TimeSelect/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/index.js -------------------------------------------------------------------------------- /frontend/src/shared/components/loading/LoadingState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/loading/LoadingState.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/loading/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/loading/USAGE.md -------------------------------------------------------------------------------- /frontend/src/shared/components/loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/loading/index.js -------------------------------------------------------------------------------- /frontend/src/shared/components/loading/styles/LoadingState.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/loading/styles/LoadingState.module.css -------------------------------------------------------------------------------- /frontend/src/shared/components/modals/ConfirmationModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/modals/ConfirmationModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/modals/auth/LoginModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/modals/auth/LoginModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/modals/auth/SignupModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/modals/auth/SignupModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/modals/event/EventModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/modals/event/EventModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/modals/profile/EditAvatarModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/modals/profile/EditAvatarModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/components/modals/session/AddEventUserModal/styles/index.module.css: -------------------------------------------------------------------------------- 1 | .form { 2 | padding: 20px 0; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/src/shared/components/modals/session/AddSpeakerModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/components/modals/session/AddSpeakerModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/shared/constants/speakerRoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/constants/speakerRoles.js -------------------------------------------------------------------------------- /frontend/src/shared/constants/timezones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/constants/timezones.js -------------------------------------------------------------------------------- /frontend/src/shared/constants/usStates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/constants/usStates.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/formatDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/formatDate.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/index.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/useChatScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/useChatScroll.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/useDMTyping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/useDMTyping.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/useEventStatusStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/useEventStatusStyle.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/useGradientBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/useGradientBadge.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/useIsMobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/useIsMobile.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/useMobileInputHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/useMobileInputHandler.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/useOpenThread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/useOpenThread.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/useRoomPresence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/useRoomPresence.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/useSocketMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/useSocketMessages.js -------------------------------------------------------------------------------- /frontend/src/shared/hooks/useThreadFiltering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/hooks/useThreadFiltering.js -------------------------------------------------------------------------------- /frontend/src/shared/utils/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/utils/formatting.js -------------------------------------------------------------------------------- /frontend/src/shared/utils/moderation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/utils/moderation.js -------------------------------------------------------------------------------- /frontend/src/shared/utils/sorting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/utils/sorting.js -------------------------------------------------------------------------------- /frontend/src/shared/utils/timezone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/shared/utils/timezone.js -------------------------------------------------------------------------------- /frontend/src/stories/Button.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/Button.stories.ts -------------------------------------------------------------------------------- /frontend/src/stories/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/Button.tsx -------------------------------------------------------------------------------- /frontend/src/stories/Configure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/Configure.mdx -------------------------------------------------------------------------------- /frontend/src/stories/Header.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/Header.stories.ts -------------------------------------------------------------------------------- /frontend/src/stories/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/Header.tsx -------------------------------------------------------------------------------- /frontend/src/stories/Page.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/Page.stories.ts -------------------------------------------------------------------------------- /frontend/src/stories/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/Page.tsx -------------------------------------------------------------------------------- /frontend/src/stories/assets/accessibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/accessibility.png -------------------------------------------------------------------------------- /frontend/src/stories/assets/accessibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/accessibility.svg -------------------------------------------------------------------------------- /frontend/src/stories/assets/addon-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/addon-library.png -------------------------------------------------------------------------------- /frontend/src/stories/assets/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/assets.png -------------------------------------------------------------------------------- /frontend/src/stories/assets/avif-test-image.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/avif-test-image.avif -------------------------------------------------------------------------------- /frontend/src/stories/assets/context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/context.png -------------------------------------------------------------------------------- /frontend/src/stories/assets/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/discord.svg -------------------------------------------------------------------------------- /frontend/src/stories/assets/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/docs.png -------------------------------------------------------------------------------- /frontend/src/stories/assets/figma-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/figma-plugin.png -------------------------------------------------------------------------------- /frontend/src/stories/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/github.svg -------------------------------------------------------------------------------- /frontend/src/stories/assets/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/share.png -------------------------------------------------------------------------------- /frontend/src/stories/assets/styling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/styling.png -------------------------------------------------------------------------------- /frontend/src/stories/assets/testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/testing.png -------------------------------------------------------------------------------- /frontend/src/stories/assets/theming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/theming.png -------------------------------------------------------------------------------- /frontend/src/stories/assets/tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/tutorials.svg -------------------------------------------------------------------------------- /frontend/src/stories/assets/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/assets/youtube.svg -------------------------------------------------------------------------------- /frontend/src/stories/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/button.css -------------------------------------------------------------------------------- /frontend/src/stories/components/Agenda/AgendaPage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/components/Agenda/AgendaPage.stories.tsx -------------------------------------------------------------------------------- /frontend/src/stories/components/Agenda/AgendaView.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/components/Agenda/AgendaView.stories.tsx -------------------------------------------------------------------------------- /frontend/src/stories/components/Agenda/DateNavigation.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/components/Agenda/DateNavigation.stories.tsx -------------------------------------------------------------------------------- /frontend/src/stories/components/Agenda/SessionCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/components/Agenda/SessionCard.stories.tsx -------------------------------------------------------------------------------- /frontend/src/stories/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/header.css -------------------------------------------------------------------------------- /frontend/src/stories/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/stories/page.css -------------------------------------------------------------------------------- /frontend/src/styles/design-tokens.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/styles/design-tokens.css -------------------------------------------------------------------------------- /frontend/src/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/styles/reset.css -------------------------------------------------------------------------------- /frontend/src/styles/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/src/styles/style-guide.md -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/frontend/vite.config.js -------------------------------------------------------------------------------- /manual_packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/manual_packages.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/package.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/database/export-schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/database/export-schema.sh -------------------------------------------------------------------------------- /scripts/database/json-to-dbml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/database/json-to-dbml.py -------------------------------------------------------------------------------- /scripts/database/manage-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/database/manage-db.sh -------------------------------------------------------------------------------- /scripts/database/schema-query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/database/schema-query.sql -------------------------------------------------------------------------------- /scripts/dev/start-local-dev-tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/dev/start-local-dev-tmux.sh -------------------------------------------------------------------------------- /scripts/dev/start-preview-tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/dev/start-preview-tmux.sh -------------------------------------------------------------------------------- /scripts/dev/start-redis-dev-tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/dev/start-redis-dev-tmux.sh -------------------------------------------------------------------------------- /scripts/dev/start-tailscale-dev-tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/dev/start-tailscale-dev-tmux.sh -------------------------------------------------------------------------------- /scripts/dev/stop-local-dev-tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/dev/stop-local-dev-tmux.sh -------------------------------------------------------------------------------- /scripts/dev/stop-preview-tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/dev/stop-preview-tmux.sh -------------------------------------------------------------------------------- /scripts/dev/stop-redis-dev-tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/dev/stop-redis-dev-tmux.sh -------------------------------------------------------------------------------- /scripts/dev/stop-tailscale-dev-tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/dev/stop-tailscale-dev-tmux.sh -------------------------------------------------------------------------------- /scripts/testing/test-nginx-frontend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/testing/test-nginx-frontend.sh -------------------------------------------------------------------------------- /scripts/testing/test-redis-integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/testing/test-redis-integration.sh -------------------------------------------------------------------------------- /scripts/testing/test-socketio-redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/testing/test-socketio-redis.py -------------------------------------------------------------------------------- /scripts/testing/test_email_invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesubtleties/atria/HEAD/scripts/testing/test_email_invitation.py --------------------------------------------------------------------------------