├── .github └── workflows │ └── deno.yml ├── .gitignore ├── README.md ├── bun.lockb ├── components.json ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── images │ └── dashboard-bg.png ├── lovable-uploads │ ├── 03e85964-1a60-4bf5-a97f-d60dcda82573.png │ ├── 0a562c8a-588d-414d-8fa2-57497d502e7b.png │ ├── 0ae5cdf4-8b08-4bb3-b8e7-e7511c2e4ee5.png │ ├── 112379c2-b5a5-442e-ab63-7ede0f48a26a.png │ ├── 2ce3141e-be7a-4e95-8819-3974f51ad6a6.png │ ├── 2e5e874d-6c7c-4664-8302-6d2ca1c7e358.png │ ├── 6884326e-0520-4659-a6b0-8b79d595a709.png │ └── 7c538c6b-feff-4001-af00-eba21a6c818b.png ├── placeholder.svg └── robots.txt ├── src ├── App.css ├── App.tsx ├── components │ ├── AppSidebar.tsx │ ├── FeedbackModal.tsx │ ├── Layout.tsx │ ├── Logo.tsx │ ├── Navbar.tsx │ ├── RichTextEditor.tsx │ ├── StepIndicator.tsx │ ├── account │ │ ├── AccountSidebar.tsx │ │ ├── AccountTab.tsx │ │ ├── AssessTab.tsx │ │ ├── DemographicsTab.tsx │ │ ├── NotificationsTab.tsx │ │ ├── ProfileHeader.tsx │ │ ├── ProfileTab.tsx │ │ └── SocialsTab.tsx │ ├── auth │ │ └── CodeProtection.tsx │ ├── chat │ │ ├── ChatHeader.tsx │ │ ├── ChatInput.tsx │ │ ├── ChatMemberList.tsx │ │ ├── ChatMessage.tsx │ │ ├── ChatMessageBubble.tsx │ │ ├── ChatMessageList.tsx │ │ ├── ChatMessageTime.tsx │ │ ├── ChatSidebar.tsx │ │ └── MessageModal.tsx │ ├── community │ │ ├── CommunityCard.tsx │ │ ├── CommunityList.tsx │ │ ├── CommunitySearch.tsx │ │ ├── CommunityTagBadge.tsx │ │ ├── CommunityTagFilter.tsx │ │ ├── FeaturedCommunities.tsx │ │ └── FeaturedCommunityCard.tsx │ ├── connections │ │ ├── ConnectionCard.tsx │ │ ├── ConnectionRequestModal.tsx │ │ ├── ConnectionSearchBar.tsx │ │ └── ConnectionsList.tsx │ ├── dashboard │ │ ├── CommunitiesSection.tsx │ │ ├── ConnectionCard.tsx │ │ ├── ConnectionsSection.tsx │ │ ├── DashboardCommunityCard.tsx │ │ └── DashboardConnectionCard.tsx │ ├── home │ │ ├── CommunitiesSection.tsx │ │ ├── ConnectionsSection.tsx │ │ └── HomeCommunityCard.tsx │ ├── icons │ │ └── TikTokIcon.tsx │ ├── journal │ │ ├── JournalDisplay.tsx │ │ ├── JournalEditor.tsx │ │ ├── JournalHistory.tsx │ │ └── JournalToolbar.tsx │ ├── message-board │ │ ├── CreatePostModal.tsx │ │ ├── MessageBoardHeader.tsx │ │ ├── PinnedPost.tsx │ │ └── PostCard.tsx │ ├── notifications │ │ └── NotificationsList.tsx │ ├── profile │ │ ├── ProfileBackground.tsx │ │ └── ProfileForm.tsx │ ├── resources │ │ ├── CreateArticleForm.tsx │ │ ├── CreateArticleModal.tsx │ │ ├── FileUpload.tsx │ │ ├── ReadTimeSelector.tsx │ │ ├── ResourceCard.tsx │ │ ├── ResourceGrid.tsx │ │ ├── ResourceSearch.tsx │ │ ├── TagFilter.tsx │ │ └── TagInput.tsx │ ├── sidebar │ │ ├── CommunitiesSection.tsx │ │ ├── ConnectionsSection.tsx │ │ ├── DirectMessagesSection.tsx │ │ ├── JournalLink.tsx │ │ └── NavigationLinks.tsx │ ├── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── swiper-carousel.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts │ └── video-meeting │ │ ├── ControlBar.tsx │ │ ├── CreateMeetingForm.tsx │ │ ├── DateList.tsx │ │ ├── MeetingCalendar.tsx │ │ ├── MeetingCard.tsx │ │ ├── MeetingDetails.tsx │ │ ├── MeetingList.tsx │ │ ├── ParticipantCard.tsx │ │ ├── ParticipantsSidebar.tsx │ │ └── VideoGrid.tsx ├── data │ ├── communitiesData.ts │ ├── communitiesDetailData.ts │ ├── connectionProfiles.ts │ ├── dashboardCommunities.ts │ └── dashboardConnections.ts ├── hooks │ ├── use-mobile.tsx │ ├── use-swiper.ts │ ├── use-toast.ts │ ├── useJournal.tsx │ ├── useResources.tsx │ └── useVideoMeetings.ts ├── index.css ├── lib │ └── utils.ts ├── main.tsx ├── pages │ ├── AboutPage.tsx │ ├── AccountPage.tsx │ ├── AssessPage.tsx │ ├── ChatPage.tsx │ ├── CommunitiesPage.tsx │ ├── CommunityDetailPage.tsx │ ├── CreateCommunityPage.tsx │ ├── DashboardPage.tsx │ ├── DirectMessagePage.tsx │ ├── FindConnectionsPage.tsx │ ├── HomePage.tsx │ ├── Index.tsx │ ├── JournalPage.tsx │ ├── LoginPage.tsx │ ├── MessageBoardPage.tsx │ ├── NotFound.tsx │ ├── PostDetailPage.tsx │ ├── ProfilePage.tsx │ ├── RaeChatPage.tsx │ ├── RaePage.tsx │ ├── ResourcesPage.tsx │ ├── SignupPage.tsx │ ├── UserProfilePage.tsx │ ├── VideoMeetingRoom.tsx │ └── VideoMeetingsPage.tsx ├── store │ └── communitiesStore.ts ├── types │ ├── chat.ts │ ├── community.ts │ ├── meeting.ts │ ├── post.ts │ ├── resource.ts │ ├── sidebar.ts │ └── video.ts ├── utils │ ├── avatarUtils.ts │ ├── communityUtils.ts │ └── stringUtils.ts └── vite-env.d.ts ├── tailwind.config.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/workflows/deno.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/.github/workflows/deno.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/dashboard-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/images/dashboard-bg.png -------------------------------------------------------------------------------- /public/lovable-uploads/03e85964-1a60-4bf5-a97f-d60dcda82573.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/lovable-uploads/03e85964-1a60-4bf5-a97f-d60dcda82573.png -------------------------------------------------------------------------------- /public/lovable-uploads/0a562c8a-588d-414d-8fa2-57497d502e7b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/lovable-uploads/0a562c8a-588d-414d-8fa2-57497d502e7b.png -------------------------------------------------------------------------------- /public/lovable-uploads/0ae5cdf4-8b08-4bb3-b8e7-e7511c2e4ee5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/lovable-uploads/0ae5cdf4-8b08-4bb3-b8e7-e7511c2e4ee5.png -------------------------------------------------------------------------------- /public/lovable-uploads/112379c2-b5a5-442e-ab63-7ede0f48a26a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/lovable-uploads/112379c2-b5a5-442e-ab63-7ede0f48a26a.png -------------------------------------------------------------------------------- /public/lovable-uploads/2ce3141e-be7a-4e95-8819-3974f51ad6a6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/lovable-uploads/2ce3141e-be7a-4e95-8819-3974f51ad6a6.png -------------------------------------------------------------------------------- /public/lovable-uploads/2e5e874d-6c7c-4664-8302-6d2ca1c7e358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/lovable-uploads/2e5e874d-6c7c-4664-8302-6d2ca1c7e358.png -------------------------------------------------------------------------------- /public/lovable-uploads/6884326e-0520-4659-a6b0-8b79d595a709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/lovable-uploads/6884326e-0520-4659-a6b0-8b79d595a709.png -------------------------------------------------------------------------------- /public/lovable-uploads/7c538c6b-feff-4001-af00-eba21a6c818b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/lovable-uploads/7c538c6b-feff-4001-af00-eba21a6c818b.png -------------------------------------------------------------------------------- /public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/placeholder.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/AppSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/AppSidebar.tsx -------------------------------------------------------------------------------- /src/components/FeedbackModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/FeedbackModal.tsx -------------------------------------------------------------------------------- /src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/Layout.tsx -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/components/RichTextEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/RichTextEditor.tsx -------------------------------------------------------------------------------- /src/components/StepIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/StepIndicator.tsx -------------------------------------------------------------------------------- /src/components/account/AccountSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/account/AccountSidebar.tsx -------------------------------------------------------------------------------- /src/components/account/AccountTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/account/AccountTab.tsx -------------------------------------------------------------------------------- /src/components/account/AssessTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/account/AssessTab.tsx -------------------------------------------------------------------------------- /src/components/account/DemographicsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/account/DemographicsTab.tsx -------------------------------------------------------------------------------- /src/components/account/NotificationsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/account/NotificationsTab.tsx -------------------------------------------------------------------------------- /src/components/account/ProfileHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/account/ProfileHeader.tsx -------------------------------------------------------------------------------- /src/components/account/ProfileTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/account/ProfileTab.tsx -------------------------------------------------------------------------------- /src/components/account/SocialsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/account/SocialsTab.tsx -------------------------------------------------------------------------------- /src/components/auth/CodeProtection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/auth/CodeProtection.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/chat/ChatHeader.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/chat/ChatInput.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatMemberList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/chat/ChatMemberList.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/chat/ChatMessage.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatMessageBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/chat/ChatMessageBubble.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatMessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/chat/ChatMessageList.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatMessageTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/chat/ChatMessageTime.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/chat/ChatSidebar.tsx -------------------------------------------------------------------------------- /src/components/chat/MessageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/chat/MessageModal.tsx -------------------------------------------------------------------------------- /src/components/community/CommunityCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/community/CommunityCard.tsx -------------------------------------------------------------------------------- /src/components/community/CommunityList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/community/CommunityList.tsx -------------------------------------------------------------------------------- /src/components/community/CommunitySearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/community/CommunitySearch.tsx -------------------------------------------------------------------------------- /src/components/community/CommunityTagBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/community/CommunityTagBadge.tsx -------------------------------------------------------------------------------- /src/components/community/CommunityTagFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/community/CommunityTagFilter.tsx -------------------------------------------------------------------------------- /src/components/community/FeaturedCommunities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/community/FeaturedCommunities.tsx -------------------------------------------------------------------------------- /src/components/community/FeaturedCommunityCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/community/FeaturedCommunityCard.tsx -------------------------------------------------------------------------------- /src/components/connections/ConnectionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/connections/ConnectionCard.tsx -------------------------------------------------------------------------------- /src/components/connections/ConnectionRequestModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/connections/ConnectionRequestModal.tsx -------------------------------------------------------------------------------- /src/components/connections/ConnectionSearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/connections/ConnectionSearchBar.tsx -------------------------------------------------------------------------------- /src/components/connections/ConnectionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/connections/ConnectionsList.tsx -------------------------------------------------------------------------------- /src/components/dashboard/CommunitiesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/dashboard/CommunitiesSection.tsx -------------------------------------------------------------------------------- /src/components/dashboard/ConnectionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/dashboard/ConnectionCard.tsx -------------------------------------------------------------------------------- /src/components/dashboard/ConnectionsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/dashboard/ConnectionsSection.tsx -------------------------------------------------------------------------------- /src/components/dashboard/DashboardCommunityCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/dashboard/DashboardCommunityCard.tsx -------------------------------------------------------------------------------- /src/components/dashboard/DashboardConnectionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/dashboard/DashboardConnectionCard.tsx -------------------------------------------------------------------------------- /src/components/home/CommunitiesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/home/CommunitiesSection.tsx -------------------------------------------------------------------------------- /src/components/home/ConnectionsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/home/ConnectionsSection.tsx -------------------------------------------------------------------------------- /src/components/home/HomeCommunityCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/home/HomeCommunityCard.tsx -------------------------------------------------------------------------------- /src/components/icons/TikTokIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/icons/TikTokIcon.tsx -------------------------------------------------------------------------------- /src/components/journal/JournalDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/journal/JournalDisplay.tsx -------------------------------------------------------------------------------- /src/components/journal/JournalEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/journal/JournalEditor.tsx -------------------------------------------------------------------------------- /src/components/journal/JournalHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/journal/JournalHistory.tsx -------------------------------------------------------------------------------- /src/components/journal/JournalToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/journal/JournalToolbar.tsx -------------------------------------------------------------------------------- /src/components/message-board/CreatePostModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/message-board/CreatePostModal.tsx -------------------------------------------------------------------------------- /src/components/message-board/MessageBoardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/message-board/MessageBoardHeader.tsx -------------------------------------------------------------------------------- /src/components/message-board/PinnedPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/message-board/PinnedPost.tsx -------------------------------------------------------------------------------- /src/components/message-board/PostCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/message-board/PostCard.tsx -------------------------------------------------------------------------------- /src/components/notifications/NotificationsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/notifications/NotificationsList.tsx -------------------------------------------------------------------------------- /src/components/profile/ProfileBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/profile/ProfileBackground.tsx -------------------------------------------------------------------------------- /src/components/profile/ProfileForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/profile/ProfileForm.tsx -------------------------------------------------------------------------------- /src/components/resources/CreateArticleForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/resources/CreateArticleForm.tsx -------------------------------------------------------------------------------- /src/components/resources/CreateArticleModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/resources/CreateArticleModal.tsx -------------------------------------------------------------------------------- /src/components/resources/FileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/resources/FileUpload.tsx -------------------------------------------------------------------------------- /src/components/resources/ReadTimeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/resources/ReadTimeSelector.tsx -------------------------------------------------------------------------------- /src/components/resources/ResourceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/resources/ResourceCard.tsx -------------------------------------------------------------------------------- /src/components/resources/ResourceGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/resources/ResourceGrid.tsx -------------------------------------------------------------------------------- /src/components/resources/ResourceSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/resources/ResourceSearch.tsx -------------------------------------------------------------------------------- /src/components/resources/TagFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/resources/TagFilter.tsx -------------------------------------------------------------------------------- /src/components/resources/TagInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/resources/TagInput.tsx -------------------------------------------------------------------------------- /src/components/sidebar/CommunitiesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/sidebar/CommunitiesSection.tsx -------------------------------------------------------------------------------- /src/components/sidebar/ConnectionsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/sidebar/ConnectionsSection.tsx -------------------------------------------------------------------------------- /src/components/sidebar/DirectMessagesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/sidebar/DirectMessagesSection.tsx -------------------------------------------------------------------------------- /src/components/sidebar/JournalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/sidebar/JournalLink.tsx -------------------------------------------------------------------------------- /src/components/sidebar/NavigationLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/sidebar/NavigationLinks.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/swiper-carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/swiper-carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/components/video-meeting/ControlBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/video-meeting/ControlBar.tsx -------------------------------------------------------------------------------- /src/components/video-meeting/CreateMeetingForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/video-meeting/CreateMeetingForm.tsx -------------------------------------------------------------------------------- /src/components/video-meeting/DateList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/video-meeting/DateList.tsx -------------------------------------------------------------------------------- /src/components/video-meeting/MeetingCalendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/video-meeting/MeetingCalendar.tsx -------------------------------------------------------------------------------- /src/components/video-meeting/MeetingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/video-meeting/MeetingCard.tsx -------------------------------------------------------------------------------- /src/components/video-meeting/MeetingDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/video-meeting/MeetingDetails.tsx -------------------------------------------------------------------------------- /src/components/video-meeting/MeetingList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/video-meeting/MeetingList.tsx -------------------------------------------------------------------------------- /src/components/video-meeting/ParticipantCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/video-meeting/ParticipantCard.tsx -------------------------------------------------------------------------------- /src/components/video-meeting/ParticipantsSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/video-meeting/ParticipantsSidebar.tsx -------------------------------------------------------------------------------- /src/components/video-meeting/VideoGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/components/video-meeting/VideoGrid.tsx -------------------------------------------------------------------------------- /src/data/communitiesData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/data/communitiesData.ts -------------------------------------------------------------------------------- /src/data/communitiesDetailData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/data/communitiesDetailData.ts -------------------------------------------------------------------------------- /src/data/connectionProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/data/connectionProfiles.ts -------------------------------------------------------------------------------- /src/data/dashboardCommunities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/data/dashboardCommunities.ts -------------------------------------------------------------------------------- /src/data/dashboardConnections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/data/dashboardConnections.ts -------------------------------------------------------------------------------- /src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /src/hooks/use-swiper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/hooks/use-swiper.ts -------------------------------------------------------------------------------- /src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /src/hooks/useJournal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/hooks/useJournal.tsx -------------------------------------------------------------------------------- /src/hooks/useResources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/hooks/useResources.tsx -------------------------------------------------------------------------------- /src/hooks/useVideoMeetings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/hooks/useVideoMeetings.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/AboutPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/AboutPage.tsx -------------------------------------------------------------------------------- /src/pages/AccountPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/AccountPage.tsx -------------------------------------------------------------------------------- /src/pages/AssessPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/AssessPage.tsx -------------------------------------------------------------------------------- /src/pages/ChatPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/ChatPage.tsx -------------------------------------------------------------------------------- /src/pages/CommunitiesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/CommunitiesPage.tsx -------------------------------------------------------------------------------- /src/pages/CommunityDetailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/CommunityDetailPage.tsx -------------------------------------------------------------------------------- /src/pages/CreateCommunityPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/CreateCommunityPage.tsx -------------------------------------------------------------------------------- /src/pages/DashboardPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/DashboardPage.tsx -------------------------------------------------------------------------------- /src/pages/DirectMessagePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/DirectMessagePage.tsx -------------------------------------------------------------------------------- /src/pages/FindConnectionsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/FindConnectionsPage.tsx -------------------------------------------------------------------------------- /src/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/HomePage.tsx -------------------------------------------------------------------------------- /src/pages/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/Index.tsx -------------------------------------------------------------------------------- /src/pages/JournalPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/JournalPage.tsx -------------------------------------------------------------------------------- /src/pages/LoginPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/LoginPage.tsx -------------------------------------------------------------------------------- /src/pages/MessageBoardPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/MessageBoardPage.tsx -------------------------------------------------------------------------------- /src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /src/pages/PostDetailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/PostDetailPage.tsx -------------------------------------------------------------------------------- /src/pages/ProfilePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/ProfilePage.tsx -------------------------------------------------------------------------------- /src/pages/RaeChatPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/RaeChatPage.tsx -------------------------------------------------------------------------------- /src/pages/RaePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/RaePage.tsx -------------------------------------------------------------------------------- /src/pages/ResourcesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/ResourcesPage.tsx -------------------------------------------------------------------------------- /src/pages/SignupPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/SignupPage.tsx -------------------------------------------------------------------------------- /src/pages/UserProfilePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/UserProfilePage.tsx -------------------------------------------------------------------------------- /src/pages/VideoMeetingRoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/VideoMeetingRoom.tsx -------------------------------------------------------------------------------- /src/pages/VideoMeetingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/pages/VideoMeetingsPage.tsx -------------------------------------------------------------------------------- /src/store/communitiesStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/store/communitiesStore.ts -------------------------------------------------------------------------------- /src/types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/types/chat.ts -------------------------------------------------------------------------------- /src/types/community.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/types/community.ts -------------------------------------------------------------------------------- /src/types/meeting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/types/meeting.ts -------------------------------------------------------------------------------- /src/types/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/types/post.ts -------------------------------------------------------------------------------- /src/types/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/types/resource.ts -------------------------------------------------------------------------------- /src/types/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/types/sidebar.ts -------------------------------------------------------------------------------- /src/types/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/types/video.ts -------------------------------------------------------------------------------- /src/utils/avatarUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/utils/avatarUtils.ts -------------------------------------------------------------------------------- /src/utils/communityUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/utils/communityUtils.ts -------------------------------------------------------------------------------- /src/utils/stringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/src/utils/stringUtils.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse00512/ydy-React-tailwindCss/HEAD/vite.config.ts --------------------------------------------------------------------------------