├── .gitignore ├── .vscode └── settings.json ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── becodemy │ │ │ └── Conversky │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable-hdpi │ │ └── splashscreen_logo.png │ │ ├── drawable-mdpi │ │ └── splashscreen_logo.png │ │ ├── drawable-xhdpi │ │ └── splashscreen_logo.png │ │ ├── drawable-xxhdpi │ │ └── splashscreen_logo.png │ │ ├── drawable-xxxhdpi │ │ └── splashscreen_logo.png │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── colors.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── app ├── (routes) │ └── conversation │ │ └── [id].tsx ├── (tabs) │ ├── _layout.tsx │ ├── conversations.tsx │ ├── home.tsx │ └── preferences.tsx ├── +not-found.tsx ├── _layout.tsx ├── globals.css └── index.tsx ├── assets ├── fonts │ └── SpaceMono-Regular.ttf ├── images │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ ├── partial-react-logo.png │ ├── react-logo.png │ ├── react-logo@2x.png │ ├── react-logo@3x.png │ └── splash-icon.png └── onboarding │ ├── 1.jpg │ └── b79e13c3-d49c-4a28-8e0b-dca593ad1224.png ├── babel.config.js ├── components ├── Collapsible.tsx ├── ExternalLink.tsx ├── HapticTab.tsx ├── HelloWave.tsx ├── ParallaxScrollView.tsx ├── ThemedText.tsx ├── ThemedView.tsx └── ui │ ├── IconSymbol.ios.tsx │ ├── IconSymbol.tsx │ ├── TabBarBackground.ios.tsx │ └── TabBarBackground.tsx ├── constants └── Colors.ts ├── eas.json ├── eslint.config.js ├── hooks ├── useAuthorized.ts ├── useColorScheme.ts ├── useColorScheme.web.ts └── useThemeColor.ts ├── ios ├── .gitignore ├── .xcode.env ├── Conversky.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Conversky.xcscheme ├── Conversky.xcworkspace │ └── contents.xcworkspacedata ├── Conversky │ ├── AppDelegate.swift │ ├── Conversky-Bridging-Header.h │ ├── Conversky.entitlements │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── App-Icon-1024x1024@1x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── SplashScreenBackground.colorset │ │ │ └── Contents.json │ │ └── SplashScreenLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── image.png │ │ │ ├── image@2x.png │ │ │ └── image@3x.png │ ├── Info.plist │ ├── PrivacyInfo.xcprivacy │ ├── SplashScreen.storyboard │ └── Supporting │ │ └── Expo.plist ├── Podfile ├── Podfile.lock └── Podfile.properties.json ├── landing-page ├── .gitignore ├── README.md ├── components.json ├── next.config.ts ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── public │ ├── file.svg │ ├── globe.svg │ ├── next.svg │ ├── vercel.svg │ └── window.svg ├── src │ ├── app │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── page.tsx │ │ ├── privacy-policy │ │ │ └── page.tsx │ │ └── terms-condition │ │ │ └── page.tsx │ ├── assets │ │ ├── 1.png │ │ └── logo.png │ ├── components │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input-otp.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ ├── hooks │ │ └── use-mobile.ts │ ├── lib │ │ └── utils.ts │ └── modules │ │ ├── features │ │ └── index.tsx │ │ ├── footer │ │ └── index.tsx │ │ └── hero │ │ └── index.tsx └── tsconfig.json ├── metro.config.js ├── nativewind-env.d.ts ├── package.json ├── screens └── onboarding │ └── index.tsx ├── scripts └── reset-project.js ├── tailwind.config.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/becodemy/Conversky/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/java/com/becodemy/Conversky/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/becodemy/Conversky/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/java/com/becodemy/Conversky/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/app.json -------------------------------------------------------------------------------- /app/(routes)/conversation/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/app/(routes)/conversation/[id].tsx -------------------------------------------------------------------------------- /app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/conversations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/app/(tabs)/conversations.tsx -------------------------------------------------------------------------------- /app/(tabs)/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/app/(tabs)/home.tsx -------------------------------------------------------------------------------- /app/(tabs)/preferences.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/app/(tabs)/preferences.tsx -------------------------------------------------------------------------------- /app/+not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/app/+not-found.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/app/index.tsx -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/assets/images/react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/assets/images/splash-icon.png -------------------------------------------------------------------------------- /assets/onboarding/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/assets/onboarding/1.jpg -------------------------------------------------------------------------------- /assets/onboarding/b79e13c3-d49c-4a28-8e0b-dca593ad1224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/assets/onboarding/b79e13c3-d49c-4a28-8e0b-dca593ad1224.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/components/Collapsible.tsx -------------------------------------------------------------------------------- /components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/components/ExternalLink.tsx -------------------------------------------------------------------------------- /components/HapticTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/components/HapticTab.tsx -------------------------------------------------------------------------------- /components/HelloWave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/components/HelloWave.tsx -------------------------------------------------------------------------------- /components/ParallaxScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/components/ParallaxScrollView.tsx -------------------------------------------------------------------------------- /components/ThemedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/components/ThemedText.tsx -------------------------------------------------------------------------------- /components/ThemedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/components/ThemedView.tsx -------------------------------------------------------------------------------- /components/ui/IconSymbol.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/components/ui/IconSymbol.ios.tsx -------------------------------------------------------------------------------- /components/ui/IconSymbol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/components/ui/IconSymbol.tsx -------------------------------------------------------------------------------- /components/ui/TabBarBackground.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/components/ui/TabBarBackground.ios.tsx -------------------------------------------------------------------------------- /components/ui/TabBarBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/components/ui/TabBarBackground.tsx -------------------------------------------------------------------------------- /constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/constants/Colors.ts -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/eas.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/eslint.config.js -------------------------------------------------------------------------------- /hooks/useAuthorized.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/hooks/useAuthorized.ts -------------------------------------------------------------------------------- /hooks/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export { useColorScheme } from 'react-native'; 2 | -------------------------------------------------------------------------------- /hooks/useColorScheme.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/hooks/useColorScheme.web.ts -------------------------------------------------------------------------------- /hooks/useThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/hooks/useThemeColor.ts -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Conversky.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Conversky.xcodeproj/xcshareddata/xcschemes/Conversky.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky.xcodeproj/xcshareddata/xcschemes/Conversky.xcscheme -------------------------------------------------------------------------------- /ios/Conversky.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Conversky/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Conversky/Conversky-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Conversky-Bridging-Header.h -------------------------------------------------------------------------------- /ios/Conversky/Conversky.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Conversky.entitlements -------------------------------------------------------------------------------- /ios/Conversky/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Conversky/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Conversky/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Conversky/Images.xcassets/SplashScreenBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Images.xcassets/SplashScreenBackground.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Conversky/Images.xcassets/SplashScreenLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Images.xcassets/SplashScreenLogo.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Conversky/Images.xcassets/SplashScreenLogo.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Images.xcassets/SplashScreenLogo.imageset/image.png -------------------------------------------------------------------------------- /ios/Conversky/Images.xcassets/SplashScreenLogo.imageset/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Images.xcassets/SplashScreenLogo.imageset/image@2x.png -------------------------------------------------------------------------------- /ios/Conversky/Images.xcassets/SplashScreenLogo.imageset/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Images.xcassets/SplashScreenLogo.imageset/image@3x.png -------------------------------------------------------------------------------- /ios/Conversky/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Info.plist -------------------------------------------------------------------------------- /ios/Conversky/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/Conversky/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/SplashScreen.storyboard -------------------------------------------------------------------------------- /ios/Conversky/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Conversky/Supporting/Expo.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/ios/Podfile.properties.json -------------------------------------------------------------------------------- /landing-page/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/.gitignore -------------------------------------------------------------------------------- /landing-page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/README.md -------------------------------------------------------------------------------- /landing-page/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/components.json -------------------------------------------------------------------------------- /landing-page/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/next.config.ts -------------------------------------------------------------------------------- /landing-page/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/package-lock.json -------------------------------------------------------------------------------- /landing-page/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/package.json -------------------------------------------------------------------------------- /landing-page/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/postcss.config.mjs -------------------------------------------------------------------------------- /landing-page/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/public/file.svg -------------------------------------------------------------------------------- /landing-page/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/public/globe.svg -------------------------------------------------------------------------------- /landing-page/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/public/next.svg -------------------------------------------------------------------------------- /landing-page/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/public/vercel.svg -------------------------------------------------------------------------------- /landing-page/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/public/window.svg -------------------------------------------------------------------------------- /landing-page/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/app/favicon.ico -------------------------------------------------------------------------------- /landing-page/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/app/globals.css -------------------------------------------------------------------------------- /landing-page/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/app/layout.tsx -------------------------------------------------------------------------------- /landing-page/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/app/page.tsx -------------------------------------------------------------------------------- /landing-page/src/app/privacy-policy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/app/privacy-policy/page.tsx -------------------------------------------------------------------------------- /landing-page/src/app/terms-condition/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/app/terms-condition/page.tsx -------------------------------------------------------------------------------- /landing-page/src/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/assets/1.png -------------------------------------------------------------------------------- /landing-page/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/assets/logo.png -------------------------------------------------------------------------------- /landing-page/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/button.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/card.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/command.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/form.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/input.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/label.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/select.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/table.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /landing-page/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /landing-page/src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /landing-page/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/lib/utils.ts -------------------------------------------------------------------------------- /landing-page/src/modules/features/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/modules/features/index.tsx -------------------------------------------------------------------------------- /landing-page/src/modules/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/modules/footer/index.tsx -------------------------------------------------------------------------------- /landing-page/src/modules/hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/src/modules/hero/index.tsx -------------------------------------------------------------------------------- /landing-page/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/landing-page/tsconfig.json -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/metro.config.js -------------------------------------------------------------------------------- /nativewind-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/nativewind-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/package.json -------------------------------------------------------------------------------- /screens/onboarding/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/screens/onboarding/index.tsx -------------------------------------------------------------------------------- /scripts/reset-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/scripts/reset-project.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/conversky/HEAD/tsconfig.json --------------------------------------------------------------------------------