├── .gitignore ├── .husky └── pre-commit ├── .vscode └── settings.json ├── .zed └── settings.json ├── apps ├── mobile │ ├── .gitignore │ ├── app.config.ts │ ├── assets │ │ ├── artwork │ │ │ └── acorn.png │ │ ├── fonts │ │ │ ├── apercu-italic.woff2 │ │ │ ├── apercu-upright.woff2 │ │ │ ├── basis-italic.woff2 │ │ │ ├── basis-upright.woff2 │ │ │ ├── fold-italic.woff2 │ │ │ ├── fold-upright.woff2 │ │ │ ├── mono-italic.woff2 │ │ │ └── mono-upright.woff2 │ │ └── icons │ │ │ ├── app-store │ │ │ └── AppIcon.icon │ │ │ │ ├── Assets │ │ │ │ ├── acorn-mono.svg │ │ │ │ └── acorn.svg │ │ │ │ └── icon.json │ │ │ ├── splash.png │ │ │ └── test-flight │ │ │ └── AppIcon.icon │ │ │ ├── Assets │ │ │ ├── acorn-mono.svg │ │ │ └── acorn-test-flight.svg │ │ │ └── icon.json │ ├── babel.config.js │ ├── drizzle.config.ts │ ├── eas.json │ ├── index.js │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── (drawer) │ │ │ │ ├── (tabs) │ │ │ │ │ ├── (home,search,profile,notifications,settings) │ │ │ │ │ │ ├── _layout.tsx │ │ │ │ │ │ ├── communities │ │ │ │ │ │ │ └── [name] │ │ │ │ │ │ │ │ ├── about.tsx │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ └── search.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── messages │ │ │ │ │ │ │ └── [id].tsx │ │ │ │ │ │ ├── notifications.tsx │ │ │ │ │ │ ├── posts │ │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ └── reply.tsx │ │ │ │ │ │ │ └── new.tsx │ │ │ │ │ │ ├── profile.tsx │ │ │ │ │ │ ├── search.tsx │ │ │ │ │ │ ├── settings.tsx │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── appearance.tsx │ │ │ │ │ │ │ ├── cache.tsx │ │ │ │ │ │ │ ├── defaults.tsx │ │ │ │ │ │ │ ├── filters.tsx │ │ │ │ │ │ │ ├── gestures.tsx │ │ │ │ │ │ │ ├── preferences.tsx │ │ │ │ │ │ │ └── sort.tsx │ │ │ │ │ │ ├── sign-in.tsx │ │ │ │ │ │ └── users │ │ │ │ │ │ │ └── [name] │ │ │ │ │ │ │ ├── [type].tsx │ │ │ │ │ │ │ ├── about.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── _layout.tsx │ │ │ │ └── _layout.tsx │ │ │ └── _layout.tsx │ │ ├── assets │ │ │ ├── images │ │ │ │ ├── acorn.png │ │ │ │ ├── acorn.svg │ │ │ │ ├── placeholder-dark.png │ │ │ │ └── placeholder-light.png │ │ │ └── sounds │ │ │ │ ├── click_01.caf │ │ │ │ ├── error_06.caf │ │ │ │ ├── pop_06.caf │ │ │ │ ├── pop_10.caf │ │ │ │ ├── woosh_04.caf │ │ │ │ └── woosh_09.caf │ │ ├── components │ │ │ ├── comments │ │ │ │ ├── card.tsx │ │ │ │ ├── menu.tsx │ │ │ │ ├── meta.tsx │ │ │ │ └── more.tsx │ │ │ ├── common │ │ │ │ ├── button.tsx │ │ │ │ ├── copy.tsx │ │ │ │ ├── empty.tsx │ │ │ │ ├── floating-button.tsx │ │ │ │ ├── focusable.tsx │ │ │ │ ├── gestures │ │ │ │ │ ├── actions.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── html │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── models.tsx │ │ │ │ │ └── renderers.tsx │ │ │ │ ├── icon │ │ │ │ │ ├── button.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── phosphor.tsx │ │ │ │ ├── list │ │ │ │ │ ├── header.tsx │ │ │ │ │ └── item.tsx │ │ │ │ ├── loading.tsx │ │ │ │ ├── logo.tsx │ │ │ │ ├── menu │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── item │ │ │ │ │ │ ├── button.tsx │ │ │ │ │ │ ├── content.tsx │ │ │ │ │ │ ├── options.tsx │ │ │ │ │ │ └── switch.tsx │ │ │ │ │ ├── label.tsx │ │ │ │ │ ├── root.tsx │ │ │ │ │ └── separator.tsx │ │ │ │ ├── pressable.tsx │ │ │ │ ├── providers.tsx │ │ │ │ ├── refresh-control.tsx │ │ │ │ ├── search.tsx │ │ │ │ ├── segmented-control.tsx │ │ │ │ ├── sheet │ │ │ │ │ ├── header.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── item.tsx │ │ │ │ │ └── root.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── spinner.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── text-box.tsx │ │ │ │ ├── text.tsx │ │ │ │ ├── time.tsx │ │ │ │ ├── toast.tsx │ │ │ │ └── view.tsx │ │ │ ├── communities │ │ │ │ ├── about.tsx │ │ │ │ ├── alphabet.tsx │ │ │ │ ├── card.tsx │ │ │ │ └── list.tsx │ │ │ ├── defaults │ │ │ │ └── draggable-item.tsx │ │ │ ├── filters │ │ │ │ └── card.tsx │ │ │ ├── gallery │ │ │ │ ├── image.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── video.tsx │ │ │ ├── home │ │ │ │ └── drawer.tsx │ │ │ ├── inbox │ │ │ │ ├── message.tsx │ │ │ │ ├── messages.tsx │ │ │ │ ├── notification.tsx │ │ │ │ └── notifications.tsx │ │ │ ├── messages │ │ │ │ ├── card.tsx │ │ │ │ └── reply.tsx │ │ │ ├── native │ │ │ │ ├── blur-view.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── glass-view.tsx │ │ │ │ ├── html.ts │ │ │ │ ├── symbol.tsx │ │ │ │ └── text-input.tsx │ │ │ ├── navigation │ │ │ │ ├── header.tsx │ │ │ │ ├── stack-header.tsx │ │ │ │ ├── tab-bar.tsx │ │ │ │ ├── tabs.ts │ │ │ │ └── theme.tsx │ │ │ ├── posts │ │ │ │ ├── card.tsx │ │ │ │ ├── compact.tsx │ │ │ │ ├── crosspost.tsx │ │ │ │ ├── flair.tsx │ │ │ │ ├── footer │ │ │ │ │ ├── button.tsx │ │ │ │ │ ├── community.tsx │ │ │ │ │ ├── crosspost.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── meta.tsx │ │ │ │ ├── gallery │ │ │ │ │ ├── blur.tsx │ │ │ │ │ ├── grid.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── menu.tsx │ │ │ │ ├── header.tsx │ │ │ │ ├── link │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── menu.tsx │ │ │ │ ├── list.tsx │ │ │ │ ├── menu.tsx │ │ │ │ ├── sort-interval.tsx │ │ │ │ └── video │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── menu.tsx │ │ │ │ │ ├── placeholder.tsx │ │ │ │ │ ├── player.tsx │ │ │ │ │ ├── red-gifs.tsx │ │ │ │ │ └── status.tsx │ │ │ ├── screens │ │ │ │ └── auth │ │ │ │ │ ├── app-store.tsx │ │ │ │ │ └── test-flight.tsx │ │ │ ├── search │ │ │ │ ├── history.tsx │ │ │ │ └── list.tsx │ │ │ ├── settings │ │ │ │ ├── about.tsx │ │ │ │ ├── interval.tsx │ │ │ │ ├── sort.tsx │ │ │ │ ├── themes.tsx │ │ │ │ └── updater.tsx │ │ │ ├── submission │ │ │ │ ├── community.tsx │ │ │ │ ├── flair.tsx │ │ │ │ ├── image.tsx │ │ │ │ ├── link.tsx │ │ │ │ ├── meta.tsx │ │ │ │ ├── text.tsx │ │ │ │ ├── title.tsx │ │ │ │ └── type.tsx │ │ │ └── users │ │ │ │ ├── about.tsx │ │ │ │ ├── account.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── profile.tsx │ │ │ │ └── switcher.tsx │ │ ├── db │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── drizzle │ │ │ ├── 0000_bumpy_darkhawk.sql │ │ │ ├── 0001_nifty_cable.sql │ │ │ ├── meta │ │ │ │ ├── 0000_snapshot.json │ │ │ │ ├── 0001_snapshot.json │ │ │ │ └── _journal.json │ │ │ └── migrations.js │ │ ├── hooks │ │ │ ├── content-width.ts │ │ │ ├── copy.ts │ │ │ ├── filters.ts │ │ │ ├── focus.tsx │ │ │ ├── history.ts │ │ │ ├── image.ts │ │ │ ├── link.ts │ │ │ ├── list.ts │ │ │ ├── moderation │ │ │ │ ├── hide.ts │ │ │ │ └── report.ts │ │ │ ├── mutations │ │ │ │ ├── auth │ │ │ │ │ ├── sign-in-app-store.ts │ │ │ │ │ └── sign-in-test-flight.ts │ │ │ │ ├── comments │ │ │ │ │ ├── edit.ts │ │ │ │ │ ├── more.ts │ │ │ │ │ ├── remove.tsx │ │ │ │ │ ├── save.ts │ │ │ │ │ └── vote.ts │ │ │ │ ├── communities │ │ │ │ │ ├── favorite.tsx │ │ │ │ │ └── join.tsx │ │ │ │ ├── messages │ │ │ │ │ └── reply.ts │ │ │ │ ├── posts │ │ │ │ │ ├── create.ts │ │ │ │ │ ├── remove.tsx │ │ │ │ │ ├── reply.ts │ │ │ │ │ ├── save.tsx │ │ │ │ │ └── vote.ts │ │ │ │ └── users │ │ │ │ │ ├── follow.tsx │ │ │ │ │ └── notifications.ts │ │ │ ├── queries │ │ │ │ ├── communities │ │ │ │ │ ├── communities.ts │ │ │ │ │ ├── community.ts │ │ │ │ │ ├── feeds.ts │ │ │ │ │ └── submission.ts │ │ │ │ ├── posts │ │ │ │ │ ├── post.ts │ │ │ │ │ └── posts.ts │ │ │ │ ├── search │ │ │ │ │ └── search.ts │ │ │ │ └── user │ │ │ │ │ ├── messages.ts │ │ │ │ │ ├── notifications.ts │ │ │ │ │ ├── profile.ts │ │ │ │ │ ├── thread.ts │ │ │ │ │ └── unread.ts │ │ │ ├── red-gifs.ts │ │ │ ├── scroll-top.ts │ │ │ ├── search.ts │ │ │ ├── sorting.ts │ │ │ ├── stage-manager.ts │ │ │ ├── sticky-nav.ts │ │ │ ├── tabs.ts │ │ │ └── video.ts │ │ ├── intl │ │ │ ├── en.json │ │ │ └── index.ts │ │ ├── lib │ │ │ ├── colors.ts │ │ │ ├── common.ts │ │ │ ├── editor.ts │ │ │ ├── feedback.ts │ │ │ ├── filtering.ts │ │ │ ├── fonts.ts │ │ │ ├── guards.ts │ │ │ ├── html.ts │ │ │ ├── icons.ts │ │ │ ├── media.ts │ │ │ ├── mitt.ts │ │ │ ├── orientation.ts │ │ │ ├── preview.ts │ │ │ ├── query.ts │ │ │ ├── red-gifs.ts │ │ │ ├── reddit.ts │ │ │ ├── sentry.ts │ │ │ ├── sort.ts │ │ │ ├── store.ts │ │ │ ├── styles.ts │ │ │ └── theme.ts │ │ ├── reddit │ │ │ ├── api.ts │ │ │ ├── auth-app-store.ts │ │ │ ├── auth-test-flight.ts │ │ │ ├── config.ts │ │ │ ├── media.ts │ │ │ ├── name.ts │ │ │ ├── token-app-store.ts │ │ │ ├── token-test-flight.ts │ │ │ └── users.ts │ │ ├── schemas │ │ │ ├── comments.ts │ │ │ ├── communities.ts │ │ │ ├── feeds.ts │ │ │ ├── flair.ts │ │ │ ├── media.ts │ │ │ ├── messages.ts │ │ │ ├── notifications.ts │ │ │ ├── post.ts │ │ │ ├── posts.ts │ │ │ ├── profile.ts │ │ │ ├── submission.ts │ │ │ ├── token.ts │ │ │ └── users.ts │ │ ├── stores │ │ │ ├── auth.ts │ │ │ ├── defaults.ts │ │ │ ├── gestures.ts │ │ │ ├── preferences.ts │ │ │ └── videos.ts │ │ ├── styles │ │ │ ├── colors.ts │ │ │ ├── oled.ts │ │ │ ├── space.ts │ │ │ ├── text.ts │ │ │ ├── themes.ts │ │ │ ├── tokens.ts │ │ │ ├── uni.ts │ │ │ └── view.ts │ │ ├── transformers │ │ │ ├── comment.ts │ │ │ ├── community.ts │ │ │ ├── feed.ts │ │ │ ├── flair.ts │ │ │ ├── message.ts │ │ │ ├── notification.ts │ │ │ ├── post.ts │ │ │ ├── profile.ts │ │ │ ├── submission.ts │ │ │ └── user.ts │ │ └── types │ │ │ ├── comment.ts │ │ │ ├── community.ts │ │ │ ├── defaults.ts │ │ │ ├── feed.ts │ │ │ ├── flair.ts │ │ │ ├── inbox.ts │ │ │ ├── index.ts │ │ │ ├── message.ts │ │ │ ├── notification.ts │ │ │ ├── post.ts │ │ │ ├── sort.ts │ │ │ ├── submission.ts │ │ │ └── user.ts │ ├── targets │ │ └── safari │ │ │ ├── Info.plist │ │ │ ├── SafariWebExtensionHandler.swift │ │ │ ├── assets │ │ │ ├── _locales │ │ │ │ └── en │ │ │ │ │ └── messages.json │ │ │ ├── content.js │ │ │ ├── images │ │ │ │ ├── icon-128.png │ │ │ │ ├── icon-256.png │ │ │ │ ├── icon-48.png │ │ │ │ ├── icon-512.png │ │ │ │ ├── icon-64.png │ │ │ │ └── icon-96.png │ │ │ └── manifest.json │ │ │ ├── expo-target.config.js │ │ │ └── generated.entitlements │ ├── tsconfig.json │ └── typings │ │ ├── env.d.ts │ │ ├── image.d.ts │ │ ├── intl.d.ts │ │ ├── phosphor.d.ts │ │ ├── sound.d.ts │ │ └── unistyles.d.ts └── web │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ ├── ffmpeg-kit-ios-full-gpl.podspec │ └── images │ │ ├── acorn.png │ │ ├── screenshot-dark.png │ │ └── screenshot-light.png │ ├── src │ ├── app │ │ ├── api │ │ │ └── auth │ │ │ │ ├── code │ │ │ │ └── route.ts │ │ │ │ ├── refresh │ │ │ │ └── route.ts │ │ │ │ └── token │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── layout.tsx │ │ ├── opengraph-image.png │ │ ├── page.tsx │ │ └── twitter-image.png │ ├── assets │ │ └── fonts │ │ │ ├── index.ts │ │ │ ├── mono.woff2 │ │ │ └── sans.woff2 │ ├── components │ │ ├── button.tsx │ │ └── logo.tsx │ ├── intl │ │ ├── en.json │ │ └── index.ts │ ├── lib │ │ └── reddit.ts │ └── styles │ │ └── main.css │ ├── tsconfig.json │ └── typings │ ├── env.d.ts │ └── intl.d.ts ├── biome.jsonc ├── bun.lock ├── changelog.md ├── license ├── package.json ├── packages └── scripts │ ├── package.json │ └── svg-to-png.mjs ├── patches ├── @bacons%2Fapple-targets@3.0.2.patch ├── expo-video@3.0.11.patch └── ffmpeg-kit-react-native@6.0.2.patch ├── readme.md ├── tsconfig.json └── turbo.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | bunx lint-staged 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/.zed/settings.json -------------------------------------------------------------------------------- /apps/mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/.gitignore -------------------------------------------------------------------------------- /apps/mobile/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/app.config.ts -------------------------------------------------------------------------------- /apps/mobile/assets/artwork/acorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/artwork/acorn.png -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/apercu-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/fonts/apercu-italic.woff2 -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/apercu-upright.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/fonts/apercu-upright.woff2 -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/basis-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/fonts/basis-italic.woff2 -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/basis-upright.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/fonts/basis-upright.woff2 -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/fold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/fonts/fold-italic.woff2 -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/fold-upright.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/fonts/fold-upright.woff2 -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/mono-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/fonts/mono-italic.woff2 -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/mono-upright.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/fonts/mono-upright.woff2 -------------------------------------------------------------------------------- /apps/mobile/assets/icons/app-store/AppIcon.icon/Assets/acorn-mono.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/icons/app-store/AppIcon.icon/Assets/acorn-mono.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/app-store/AppIcon.icon/Assets/acorn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/icons/app-store/AppIcon.icon/Assets/acorn.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/app-store/AppIcon.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/icons/app-store/AppIcon.icon/icon.json -------------------------------------------------------------------------------- /apps/mobile/assets/icons/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/icons/splash.png -------------------------------------------------------------------------------- /apps/mobile/assets/icons/test-flight/AppIcon.icon/Assets/acorn-mono.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/icons/test-flight/AppIcon.icon/Assets/acorn-mono.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/test-flight/AppIcon.icon/Assets/acorn-test-flight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/icons/test-flight/AppIcon.icon/Assets/acorn-test-flight.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/test-flight/AppIcon.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/assets/icons/test-flight/AppIcon.icon/icon.json -------------------------------------------------------------------------------- /apps/mobile/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/babel.config.js -------------------------------------------------------------------------------- /apps/mobile/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/drizzle.config.ts -------------------------------------------------------------------------------- /apps/mobile/eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/eas.json -------------------------------------------------------------------------------- /apps/mobile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/index.js -------------------------------------------------------------------------------- /apps/mobile/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/metro.config.js -------------------------------------------------------------------------------- /apps/mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/package.json -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/_layout.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/communities/[name]/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/communities/[name]/about.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/communities/[name]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/communities/[name]/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/communities/[name]/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/communities/[name]/search.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/messages/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/messages/[id].tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/notifications.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/posts/[id]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/posts/[id]/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/posts/[id]/reply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/posts/[id]/reply.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/posts/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/posts/new.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/profile.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/search.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/appearance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/appearance.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/cache.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/cache.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/defaults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/defaults.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/filters.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/gestures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/gestures.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/preferences.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/preferences.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/sort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/settings/sort.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/sign-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/sign-in.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/users/[name]/[type].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/users/[name]/[type].tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/users/[name]/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/users/[name]/about.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/users/[name]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/(home,search,profile,notifications,settings)/users/[name]/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/(drawer)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/(drawer)/_layout.tsx -------------------------------------------------------------------------------- /apps/mobile/src/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/app/_layout.tsx -------------------------------------------------------------------------------- /apps/mobile/src/assets/images/acorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/assets/images/acorn.png -------------------------------------------------------------------------------- /apps/mobile/src/assets/images/acorn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/assets/images/acorn.svg -------------------------------------------------------------------------------- /apps/mobile/src/assets/images/placeholder-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/assets/images/placeholder-dark.png -------------------------------------------------------------------------------- /apps/mobile/src/assets/images/placeholder-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/assets/images/placeholder-light.png -------------------------------------------------------------------------------- /apps/mobile/src/assets/sounds/click_01.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/assets/sounds/click_01.caf -------------------------------------------------------------------------------- /apps/mobile/src/assets/sounds/error_06.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/assets/sounds/error_06.caf -------------------------------------------------------------------------------- /apps/mobile/src/assets/sounds/pop_06.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/assets/sounds/pop_06.caf -------------------------------------------------------------------------------- /apps/mobile/src/assets/sounds/pop_10.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/assets/sounds/pop_10.caf -------------------------------------------------------------------------------- /apps/mobile/src/assets/sounds/woosh_04.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/assets/sounds/woosh_04.caf -------------------------------------------------------------------------------- /apps/mobile/src/assets/sounds/woosh_09.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/assets/sounds/woosh_09.caf -------------------------------------------------------------------------------- /apps/mobile/src/components/comments/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/comments/card.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/comments/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/comments/menu.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/comments/meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/comments/meta.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/comments/more.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/comments/more.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/button.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/copy.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/empty.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/floating-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/floating-button.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/focusable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/focusable.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/gestures/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/gestures/actions.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/gestures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/gestures/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/html/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/html/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/html/models.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/html/models.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/html/renderers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/html/renderers.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/icon/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/icon/button.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/icon/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/icon/phosphor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/icon/phosphor.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/list/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/list/header.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/list/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/list/item.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/loading.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/logo.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/menu/index.ts -------------------------------------------------------------------------------- /apps/mobile/src/components/common/menu/item/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/menu/item/button.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/menu/item/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/menu/item/content.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/menu/item/options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/menu/item/options.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/menu/item/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/menu/item/switch.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/menu/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/menu/label.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/menu/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/menu/root.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/menu/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/menu/separator.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/pressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/pressable.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/providers.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/refresh-control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/refresh-control.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/search.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/segmented-control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/segmented-control.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/sheet/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/sheet/header.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/sheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/sheet/index.ts -------------------------------------------------------------------------------- /apps/mobile/src/components/common/sheet/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/sheet/item.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/sheet/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/sheet/root.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/slider.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/spinner.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/switch.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/text-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/text-box.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/text.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/time.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/time.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/toast.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/common/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/common/view.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/communities/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/communities/about.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/communities/alphabet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/communities/alphabet.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/communities/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/communities/card.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/communities/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/communities/list.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/defaults/draggable-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/defaults/draggable-item.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/filters/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/filters/card.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/gallery/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/gallery/image.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/gallery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/gallery/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/gallery/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/gallery/video.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/home/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/home/drawer.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/inbox/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/inbox/message.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/inbox/messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/inbox/messages.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/inbox/notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/inbox/notification.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/inbox/notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/inbox/notifications.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/messages/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/messages/card.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/messages/reply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/messages/reply.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/native/blur-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/native/blur-view.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/native/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/native/editor.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/native/glass-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/native/glass-view.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/native/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/native/html.ts -------------------------------------------------------------------------------- /apps/mobile/src/components/native/symbol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/native/symbol.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/native/text-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/native/text-input.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/navigation/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/navigation/header.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/navigation/stack-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/navigation/stack-header.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/navigation/tab-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/navigation/tab-bar.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/navigation/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/navigation/tabs.ts -------------------------------------------------------------------------------- /apps/mobile/src/components/navigation/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/navigation/theme.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/card.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/compact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/compact.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/crosspost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/crosspost.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/flair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/flair.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/footer/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/footer/button.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/footer/community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/footer/community.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/footer/crosspost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/footer/crosspost.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/footer/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/footer/meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/footer/meta.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/gallery/blur.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/gallery/blur.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/gallery/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/gallery/grid.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/gallery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/gallery/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/gallery/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/gallery/menu.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/header.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/link/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/link/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/link/menu.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/list.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/menu.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/sort-interval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/sort-interval.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/video/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/video/index.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/video/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/video/menu.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/video/placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/video/placeholder.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/video/player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/video/player.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/video/red-gifs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/video/red-gifs.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/posts/video/status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/posts/video/status.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/screens/auth/app-store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/screens/auth/app-store.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/screens/auth/test-flight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/screens/auth/test-flight.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/search/history.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/search/history.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/search/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/search/list.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/settings/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/settings/about.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/settings/interval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/settings/interval.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/settings/sort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/settings/sort.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/settings/themes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/settings/themes.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/settings/updater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/settings/updater.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/submission/community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/submission/community.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/submission/flair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/submission/flair.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/submission/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/submission/image.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/submission/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/submission/link.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/submission/meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/submission/meta.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/submission/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/submission/text.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/submission/title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/submission/title.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/submission/type.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/submission/type.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/users/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/users/about.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/users/account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/users/account.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/users/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/users/card.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/users/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/users/profile.tsx -------------------------------------------------------------------------------- /apps/mobile/src/components/users/switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/components/users/switcher.tsx -------------------------------------------------------------------------------- /apps/mobile/src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/db/index.ts -------------------------------------------------------------------------------- /apps/mobile/src/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/db/schema.ts -------------------------------------------------------------------------------- /apps/mobile/src/drizzle/0000_bumpy_darkhawk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/drizzle/0000_bumpy_darkhawk.sql -------------------------------------------------------------------------------- /apps/mobile/src/drizzle/0001_nifty_cable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/drizzle/0001_nifty_cable.sql -------------------------------------------------------------------------------- /apps/mobile/src/drizzle/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/drizzle/meta/0000_snapshot.json -------------------------------------------------------------------------------- /apps/mobile/src/drizzle/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/drizzle/meta/0001_snapshot.json -------------------------------------------------------------------------------- /apps/mobile/src/drizzle/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/drizzle/meta/_journal.json -------------------------------------------------------------------------------- /apps/mobile/src/drizzle/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/drizzle/migrations.js -------------------------------------------------------------------------------- /apps/mobile/src/hooks/content-width.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/content-width.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/copy.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/filters.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/focus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/focus.tsx -------------------------------------------------------------------------------- /apps/mobile/src/hooks/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/history.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/image.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/link.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/list.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/moderation/hide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/moderation/hide.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/moderation/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/moderation/report.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/auth/sign-in-app-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/auth/sign-in-app-store.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/auth/sign-in-test-flight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/auth/sign-in-test-flight.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/comments/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/comments/edit.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/comments/more.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/comments/more.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/comments/remove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/comments/remove.tsx -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/comments/save.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/comments/save.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/comments/vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/comments/vote.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/communities/favorite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/communities/favorite.tsx -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/communities/join.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/communities/join.tsx -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/messages/reply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/messages/reply.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/posts/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/posts/create.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/posts/remove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/posts/remove.tsx -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/posts/reply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/posts/reply.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/posts/save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/posts/save.tsx -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/posts/vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/posts/vote.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/users/follow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/users/follow.tsx -------------------------------------------------------------------------------- /apps/mobile/src/hooks/mutations/users/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/mutations/users/notifications.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/communities/communities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/communities/communities.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/communities/community.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/communities/community.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/communities/feeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/communities/feeds.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/communities/submission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/communities/submission.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/posts/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/posts/post.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/posts/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/posts/posts.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/search/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/search/search.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/user/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/user/messages.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/user/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/user/notifications.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/user/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/user/profile.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/user/thread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/user/thread.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/queries/user/unread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/queries/user/unread.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/red-gifs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/red-gifs.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/scroll-top.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/scroll-top.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/search.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/sorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/sorting.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/stage-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/stage-manager.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/sticky-nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/sticky-nav.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/tabs.ts -------------------------------------------------------------------------------- /apps/mobile/src/hooks/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/hooks/video.ts -------------------------------------------------------------------------------- /apps/mobile/src/intl/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/intl/en.json -------------------------------------------------------------------------------- /apps/mobile/src/intl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/intl/index.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/colors.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/common.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/editor.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/feedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/feedback.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/filtering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/filtering.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/fonts.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/guards.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/html.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/icons.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/media.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/mitt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/mitt.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/orientation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/orientation.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/preview.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/query.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/red-gifs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/red-gifs.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/reddit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/reddit.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/sentry.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/sort.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/store.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/styles.ts -------------------------------------------------------------------------------- /apps/mobile/src/lib/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/lib/theme.ts -------------------------------------------------------------------------------- /apps/mobile/src/reddit/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/reddit/api.ts -------------------------------------------------------------------------------- /apps/mobile/src/reddit/auth-app-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/reddit/auth-app-store.ts -------------------------------------------------------------------------------- /apps/mobile/src/reddit/auth-test-flight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/reddit/auth-test-flight.ts -------------------------------------------------------------------------------- /apps/mobile/src/reddit/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/reddit/config.ts -------------------------------------------------------------------------------- /apps/mobile/src/reddit/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/reddit/media.ts -------------------------------------------------------------------------------- /apps/mobile/src/reddit/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/reddit/name.ts -------------------------------------------------------------------------------- /apps/mobile/src/reddit/token-app-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/reddit/token-app-store.ts -------------------------------------------------------------------------------- /apps/mobile/src/reddit/token-test-flight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/reddit/token-test-flight.ts -------------------------------------------------------------------------------- /apps/mobile/src/reddit/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/reddit/users.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/comments.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/communities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/communities.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/feeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/feeds.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/flair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/flair.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/media.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/messages.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/notifications.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/post.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/posts.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/profile.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/submission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/submission.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/token.ts -------------------------------------------------------------------------------- /apps/mobile/src/schemas/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/schemas/users.ts -------------------------------------------------------------------------------- /apps/mobile/src/stores/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/stores/auth.ts -------------------------------------------------------------------------------- /apps/mobile/src/stores/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/stores/defaults.ts -------------------------------------------------------------------------------- /apps/mobile/src/stores/gestures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/stores/gestures.ts -------------------------------------------------------------------------------- /apps/mobile/src/stores/preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/stores/preferences.ts -------------------------------------------------------------------------------- /apps/mobile/src/stores/videos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/stores/videos.ts -------------------------------------------------------------------------------- /apps/mobile/src/styles/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/styles/colors.ts -------------------------------------------------------------------------------- /apps/mobile/src/styles/oled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/styles/oled.ts -------------------------------------------------------------------------------- /apps/mobile/src/styles/space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/styles/space.ts -------------------------------------------------------------------------------- /apps/mobile/src/styles/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/styles/text.ts -------------------------------------------------------------------------------- /apps/mobile/src/styles/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/styles/themes.ts -------------------------------------------------------------------------------- /apps/mobile/src/styles/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/styles/tokens.ts -------------------------------------------------------------------------------- /apps/mobile/src/styles/uni.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/styles/uni.ts -------------------------------------------------------------------------------- /apps/mobile/src/styles/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/styles/view.ts -------------------------------------------------------------------------------- /apps/mobile/src/transformers/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/transformers/comment.ts -------------------------------------------------------------------------------- /apps/mobile/src/transformers/community.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/transformers/community.ts -------------------------------------------------------------------------------- /apps/mobile/src/transformers/feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/transformers/feed.ts -------------------------------------------------------------------------------- /apps/mobile/src/transformers/flair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/transformers/flair.ts -------------------------------------------------------------------------------- /apps/mobile/src/transformers/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/transformers/message.ts -------------------------------------------------------------------------------- /apps/mobile/src/transformers/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/transformers/notification.ts -------------------------------------------------------------------------------- /apps/mobile/src/transformers/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/transformers/post.ts -------------------------------------------------------------------------------- /apps/mobile/src/transformers/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/transformers/profile.ts -------------------------------------------------------------------------------- /apps/mobile/src/transformers/submission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/transformers/submission.ts -------------------------------------------------------------------------------- /apps/mobile/src/transformers/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/transformers/user.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/comment.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/community.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/community.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/defaults.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/feed.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/flair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/flair.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/inbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/inbox.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/index.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/message.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/notification.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/post.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/sort.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/submission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/submission.ts -------------------------------------------------------------------------------- /apps/mobile/src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/src/types/user.ts -------------------------------------------------------------------------------- /apps/mobile/targets/safari/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/Info.plist -------------------------------------------------------------------------------- /apps/mobile/targets/safari/SafariWebExtensionHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/SafariWebExtensionHandler.swift -------------------------------------------------------------------------------- /apps/mobile/targets/safari/assets/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/assets/_locales/en/messages.json -------------------------------------------------------------------------------- /apps/mobile/targets/safari/assets/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/assets/content.js -------------------------------------------------------------------------------- /apps/mobile/targets/safari/assets/images/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/assets/images/icon-128.png -------------------------------------------------------------------------------- /apps/mobile/targets/safari/assets/images/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/assets/images/icon-256.png -------------------------------------------------------------------------------- /apps/mobile/targets/safari/assets/images/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/assets/images/icon-48.png -------------------------------------------------------------------------------- /apps/mobile/targets/safari/assets/images/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/assets/images/icon-512.png -------------------------------------------------------------------------------- /apps/mobile/targets/safari/assets/images/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/assets/images/icon-64.png -------------------------------------------------------------------------------- /apps/mobile/targets/safari/assets/images/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/assets/images/icon-96.png -------------------------------------------------------------------------------- /apps/mobile/targets/safari/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/assets/manifest.json -------------------------------------------------------------------------------- /apps/mobile/targets/safari/expo-target.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/expo-target.config.js -------------------------------------------------------------------------------- /apps/mobile/targets/safari/generated.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/targets/safari/generated.entitlements -------------------------------------------------------------------------------- /apps/mobile/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/tsconfig.json -------------------------------------------------------------------------------- /apps/mobile/typings/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/typings/env.d.ts -------------------------------------------------------------------------------- /apps/mobile/typings/image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/typings/image.d.ts -------------------------------------------------------------------------------- /apps/mobile/typings/intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/typings/intl.d.ts -------------------------------------------------------------------------------- /apps/mobile/typings/phosphor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/typings/phosphor.d.ts -------------------------------------------------------------------------------- /apps/mobile/typings/sound.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/typings/sound.d.ts -------------------------------------------------------------------------------- /apps/mobile/typings/unistyles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/mobile/typings/unistyles.d.ts -------------------------------------------------------------------------------- /apps/web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/next-env.d.ts -------------------------------------------------------------------------------- /apps/web/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/next.config.mjs -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/postcss.config.mjs -------------------------------------------------------------------------------- /apps/web/public/ffmpeg-kit-ios-full-gpl.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/public/ffmpeg-kit-ios-full-gpl.podspec -------------------------------------------------------------------------------- /apps/web/public/images/acorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/public/images/acorn.png -------------------------------------------------------------------------------- /apps/web/public/images/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/public/images/screenshot-dark.png -------------------------------------------------------------------------------- /apps/web/public/images/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/public/images/screenshot-light.png -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/code/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/app/api/auth/code/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/refresh/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/app/api/auth/refresh/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/token/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/app/api/auth/token/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/app/opengraph-image.png -------------------------------------------------------------------------------- /apps/web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/twitter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/app/twitter-image.png -------------------------------------------------------------------------------- /apps/web/src/assets/fonts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/assets/fonts/index.ts -------------------------------------------------------------------------------- /apps/web/src/assets/fonts/mono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/assets/fonts/mono.woff2 -------------------------------------------------------------------------------- /apps/web/src/assets/fonts/sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/assets/fonts/sans.woff2 -------------------------------------------------------------------------------- /apps/web/src/components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/components/button.tsx -------------------------------------------------------------------------------- /apps/web/src/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/components/logo.tsx -------------------------------------------------------------------------------- /apps/web/src/intl/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/intl/en.json -------------------------------------------------------------------------------- /apps/web/src/intl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/intl/index.ts -------------------------------------------------------------------------------- /apps/web/src/lib/reddit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/lib/reddit.ts -------------------------------------------------------------------------------- /apps/web/src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/src/styles/main.css -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /apps/web/typings/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/typings/env.d.ts -------------------------------------------------------------------------------- /apps/web/typings/intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/apps/web/typings/intl.d.ts -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/biome.jsonc -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/bun.lock -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/changelog.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/package.json -------------------------------------------------------------------------------- /packages/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/packages/scripts/package.json -------------------------------------------------------------------------------- /packages/scripts/svg-to-png.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/packages/scripts/svg-to-png.mjs -------------------------------------------------------------------------------- /patches/@bacons%2Fapple-targets@3.0.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/patches/@bacons%2Fapple-targets@3.0.2.patch -------------------------------------------------------------------------------- /patches/expo-video@3.0.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/patches/expo-video@3.0.11.patch -------------------------------------------------------------------------------- /patches/ffmpeg-kit-react-native@6.0.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/patches/ffmpeg-kit-react-native@6.0.2.patch -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/readme.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alizahid/acorn/HEAD/turbo.json --------------------------------------------------------------------------------