├── .cursor └── rules │ └── general.mdc ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .nvmrc ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── bun.lock ├── components.json ├── create_signed_dmg.sh ├── dist.tar.gz ├── docs └── README.md ├── index.html ├── install.sh ├── package.json ├── postcss.config.js ├── public ├── claude.svg ├── cursor.png ├── drag-arrow.svg ├── hero-asset.png ├── icons │ ├── cog.svg │ ├── feedback.svg │ ├── green-flower.svg │ ├── red-flower.svg │ └── yellow-flower.svg ├── logo.png ├── logo.svg ├── servers │ ├── browser.svg │ ├── gcal.svg │ ├── gmail.svg │ ├── linear-dark.svg │ ├── linear-light.svg │ ├── linear.svg │ └── yc.svg └── windsurf.png ├── release.sh ├── scripts ├── generate_icons.sh ├── start └── test ├── sign_app.sh ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ ├── default.json │ └── desktop.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── latest.json ├── macos │ └── entitlements.plist ├── src │ ├── app.rs │ ├── clients.rs │ ├── environment.rs │ ├── file_utils.rs │ ├── lib.rs │ ├── main.rs │ └── os.rs ├── tauri.conf.json └── tests │ ├── app.rs │ ├── common │ └── mod.rs │ ├── environment.rs │ ├── file_utils.rs │ └── test_app_installation.rs ├── src ├── App.css ├── appRegistry.ts ├── components │ ├── Onboarding.tsx │ ├── app │ │ ├── AppDescription.tsx │ │ ├── AppDetail.tsx │ │ ├── AppHeader.tsx │ │ ├── AppIcon.tsx │ │ ├── AppInformation.tsx │ │ ├── AppInstallButton.tsx │ │ ├── AppListItem.tsx │ │ ├── AppRatings.tsx │ │ ├── AppScreenshots.tsx │ │ ├── AppWhatsNew.tsx │ │ ├── ClientSelector.tsx │ │ ├── TextMarkdown.tsx │ │ ├── configuration │ │ │ ├── ConfigurationMenu.tsx │ │ │ ├── InputSetupItem.tsx │ │ │ ├── TextSetupItem.tsx │ │ │ └── index.ts │ │ ├── feedback.tsx │ │ ├── home.tsx │ │ ├── onboarding-settings.tsx │ │ └── settings.tsx │ ├── magicui │ │ ├── blur-fade.tsx │ │ └── text-animate.tsx │ ├── onboarding │ │ ├── InstallMcp.tsx │ │ └── OnboardingScreen.tsx │ └── ui │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── dialog.tsx │ │ ├── drag-region.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── loader.tsx │ │ ├── scroll-area.tsx │ │ ├── separator.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── tabs.tsx │ │ └── tooltip.tsx ├── lib │ ├── data.ts │ ├── hasConfig.ts │ ├── onboarding.ts │ ├── update-tauri-theme.ts │ └── utils.ts ├── main.tsx ├── routeTree.gen.ts ├── routes │ ├── __root.tsx │ ├── app.$name.tsx │ └── index.tsx ├── store │ └── app.ts ├── types │ ├── analytics.d.ts │ ├── app-state.ts │ ├── clients.ts │ └── components │ │ └── app.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.cursor/rules/general.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/.cursor/rules/general.mdc -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.9.0 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/bun.lock -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/components.json -------------------------------------------------------------------------------- /create_signed_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/create_signed_dmg.sh -------------------------------------------------------------------------------- /dist.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/dist.tar.gz -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/docs/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/index.html -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/install.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/claude.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/claude.svg -------------------------------------------------------------------------------- /public/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/cursor.png -------------------------------------------------------------------------------- /public/drag-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/drag-arrow.svg -------------------------------------------------------------------------------- /public/hero-asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/hero-asset.png -------------------------------------------------------------------------------- /public/icons/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/icons/cog.svg -------------------------------------------------------------------------------- /public/icons/feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/icons/feedback.svg -------------------------------------------------------------------------------- /public/icons/green-flower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/icons/green-flower.svg -------------------------------------------------------------------------------- /public/icons/red-flower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/icons/red-flower.svg -------------------------------------------------------------------------------- /public/icons/yellow-flower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/icons/yellow-flower.svg -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/servers/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/servers/browser.svg -------------------------------------------------------------------------------- /public/servers/gcal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/servers/gcal.svg -------------------------------------------------------------------------------- /public/servers/gmail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/servers/gmail.svg -------------------------------------------------------------------------------- /public/servers/linear-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/servers/linear-dark.svg -------------------------------------------------------------------------------- /public/servers/linear-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/servers/linear-light.svg -------------------------------------------------------------------------------- /public/servers/linear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/servers/linear.svg -------------------------------------------------------------------------------- /public/servers/yc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/servers/yc.svg -------------------------------------------------------------------------------- /public/windsurf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/public/windsurf.png -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/release.sh -------------------------------------------------------------------------------- /scripts/generate_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/scripts/generate_icons.sh -------------------------------------------------------------------------------- /scripts/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/scripts/start -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/scripts/test -------------------------------------------------------------------------------- /sign_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/sign_app.sh -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /src-tauri/capabilities/desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/capabilities/desktop.json -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/latest.json -------------------------------------------------------------------------------- /src-tauri/macos/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/macos/entitlements.plist -------------------------------------------------------------------------------- /src-tauri/src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/src/app.rs -------------------------------------------------------------------------------- /src-tauri/src/clients.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/src/clients.rs -------------------------------------------------------------------------------- /src-tauri/src/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/src/environment.rs -------------------------------------------------------------------------------- /src-tauri/src/file_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/src/file_utils.rs -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/src/os.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/src/os.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src-tauri/tests/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/tests/app.rs -------------------------------------------------------------------------------- /src-tauri/tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/tests/common/mod.rs -------------------------------------------------------------------------------- /src-tauri/tests/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/tests/environment.rs -------------------------------------------------------------------------------- /src-tauri/tests/file_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/tests/file_utils.rs -------------------------------------------------------------------------------- /src-tauri/tests/test_app_installation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src-tauri/tests/test_app_installation.rs -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/App.css -------------------------------------------------------------------------------- /src/appRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/appRegistry.ts -------------------------------------------------------------------------------- /src/components/Onboarding.tsx: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/components/app/AppDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/AppDescription.tsx -------------------------------------------------------------------------------- /src/components/app/AppDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/AppDetail.tsx -------------------------------------------------------------------------------- /src/components/app/AppHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/AppHeader.tsx -------------------------------------------------------------------------------- /src/components/app/AppIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/AppIcon.tsx -------------------------------------------------------------------------------- /src/components/app/AppInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/AppInformation.tsx -------------------------------------------------------------------------------- /src/components/app/AppInstallButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/AppInstallButton.tsx -------------------------------------------------------------------------------- /src/components/app/AppListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/AppListItem.tsx -------------------------------------------------------------------------------- /src/components/app/AppRatings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/AppRatings.tsx -------------------------------------------------------------------------------- /src/components/app/AppScreenshots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/AppScreenshots.tsx -------------------------------------------------------------------------------- /src/components/app/AppWhatsNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/AppWhatsNew.tsx -------------------------------------------------------------------------------- /src/components/app/ClientSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/ClientSelector.tsx -------------------------------------------------------------------------------- /src/components/app/TextMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/TextMarkdown.tsx -------------------------------------------------------------------------------- /src/components/app/configuration/ConfigurationMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/configuration/ConfigurationMenu.tsx -------------------------------------------------------------------------------- /src/components/app/configuration/InputSetupItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/configuration/InputSetupItem.tsx -------------------------------------------------------------------------------- /src/components/app/configuration/TextSetupItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/configuration/TextSetupItem.tsx -------------------------------------------------------------------------------- /src/components/app/configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/configuration/index.ts -------------------------------------------------------------------------------- /src/components/app/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/feedback.tsx -------------------------------------------------------------------------------- /src/components/app/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/home.tsx -------------------------------------------------------------------------------- /src/components/app/onboarding-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/onboarding-settings.tsx -------------------------------------------------------------------------------- /src/components/app/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/app/settings.tsx -------------------------------------------------------------------------------- /src/components/magicui/blur-fade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/magicui/blur-fade.tsx -------------------------------------------------------------------------------- /src/components/magicui/text-animate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/magicui/text-animate.tsx -------------------------------------------------------------------------------- /src/components/onboarding/InstallMcp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/onboarding/InstallMcp.tsx -------------------------------------------------------------------------------- /src/components/onboarding/OnboardingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/onboarding/OnboardingScreen.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drag-region.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/drag-region.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/loader.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/lib/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/lib/data.ts -------------------------------------------------------------------------------- /src/lib/hasConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/lib/hasConfig.ts -------------------------------------------------------------------------------- /src/lib/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/lib/onboarding.ts -------------------------------------------------------------------------------- /src/lib/update-tauri-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/lib/update-tauri-theme.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/routeTree.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/routeTree.gen.ts -------------------------------------------------------------------------------- /src/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/routes/__root.tsx -------------------------------------------------------------------------------- /src/routes/app.$name.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/routes/app.$name.tsx -------------------------------------------------------------------------------- /src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/routes/index.tsx -------------------------------------------------------------------------------- /src/store/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/store/app.ts -------------------------------------------------------------------------------- /src/types/analytics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/types/analytics.d.ts -------------------------------------------------------------------------------- /src/types/app-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/types/app-state.ts -------------------------------------------------------------------------------- /src/types/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/types/clients.ts -------------------------------------------------------------------------------- /src/types/components/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/src/types/components/app.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleuristes/fleur/HEAD/vite.config.ts --------------------------------------------------------------------------------