├── .dockerignore ├── .eslintrc.json ├── .firebase ├── hosting.Lm5leHQvc3RhdGlj.cache └── hosting.b3V0.cache ├── .firebaserc ├── .github ├── ISSUE_TEMPLATE │ ├── PULL_REQUEST_TEMPLATE.md │ ├── bug.md │ └── feature_request.md └── workflows │ ├── firebase-hosting-merge.yml │ └── firebase-hosting-pull-request.yml ├── .gitignore ├── .vercelignore ├── .vscode └── settings.json ├── Changelog.md ├── Contributing.md ├── Dockerfile ├── LICENSE ├── README.md ├── components.json ├── firebase.json ├── functions ├── .eslintrc.js ├── .gitignore ├── package-lock.json ├── package.json ├── src │ └── index.ts ├── tsconfig.dev.json └── tsconfig.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── favicon │ ├── apple-touch-icon.png │ ├── favicon-48x48.png │ ├── favicon.ico │ ├── favicon.svg │ ├── icon-16x16.png │ ├── icon-180x180.png │ ├── icon-192x192.png │ ├── icon-48x48.png │ └── icon-512x512.png ├── images │ ├── cover-dark.png │ ├── cover.png │ ├── frame.png │ ├── gemini.png │ ├── local.png │ ├── logo.png │ └── preview.png ├── manifest.json ├── next.svg ├── sw.js ├── vercel.svg ├── workbox-7144475a.js └── workbox-7144475a.js.map ├── src ├── app │ ├── (main) │ │ ├── _components │ │ │ ├── CodeHighlight.tsx │ │ │ ├── CopyIcon.tsx │ │ │ ├── DatePicker.tsx │ │ │ ├── Dialog │ │ │ │ ├── Changelog.tsx │ │ │ │ ├── Delete.tsx │ │ │ │ ├── GeminiDialog.tsx │ │ │ │ ├── Import.tsx │ │ │ │ ├── SearchDialog.tsx │ │ │ │ └── Share.tsx │ │ │ ├── Dropdown.tsx │ │ │ ├── Editor.tsx │ │ │ ├── GeminiIcon.tsx │ │ │ ├── GradientText.tsx │ │ │ ├── IconButton.tsx │ │ │ ├── LoginMenu.tsx │ │ │ ├── MDPreview.tsx │ │ │ ├── Navigation.tsx │ │ │ ├── PSAccordian.tsx │ │ │ ├── PSBanner.tsx │ │ │ ├── PSInput.tsx │ │ │ ├── PSNavbar.tsx │ │ │ ├── Pastelog.tsx │ │ │ ├── PreviewAction.tsx │ │ │ ├── PreviewPage.tsx │ │ │ ├── RouteClient.tsx │ │ │ ├── ShortCutWrapper.tsx │ │ │ ├── ShortcutsGuide.tsx │ │ │ ├── SideBarItem.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── TermsAndPrivacy.tsx │ │ │ ├── ThemeProvider.tsx │ │ │ ├── ThemeSwitcher.tsx │ │ │ ├── ToastProvider.tsx │ │ │ ├── Welcome.tsx │ │ │ ├── accordion.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── completion.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── features │ │ │ │ ├── BeautifulMarkdown.tsx │ │ │ │ ├── CreateAndShare.tsx │ │ │ │ ├── DarkMode.tsx │ │ │ │ ├── GeminiPowered.tsx │ │ │ │ ├── Introduction.tsx │ │ │ │ ├── KeyboardShortcuts.tsx │ │ │ │ └── SaveLocally.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── popover.tsx │ │ │ └── select.tsx │ │ ├── _hooks │ │ │ ├── outsideclick.ts │ │ │ ├── useSettings.ts │ │ │ ├── useSidebar.ts │ │ │ └── useSmallScreen.ts │ │ ├── _services │ │ │ ├── Analytics.ts │ │ │ ├── AuthService.ts │ │ │ ├── BannerState.ts │ │ │ ├── EditorState.ts │ │ │ ├── MDFormatter.ts │ │ │ ├── UserService.ts │ │ │ ├── feature.ts │ │ │ └── logService.ts │ │ └── logs │ │ │ ├── [id] │ │ │ └── page.tsx │ │ │ ├── app_layout.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ ├── (policies) │ │ └── policies │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ ├── (publish) │ │ ├── layout.tsx │ │ └── logs │ │ │ └── publish │ │ │ └── [id] │ │ │ └── page.tsx │ ├── config.js │ ├── constants.ts │ ├── globals.css │ ├── icon.ico │ ├── layout.tsx │ ├── markdown.css │ ├── page.tsx │ ├── providers.tsx │ ├── robots.ts │ ├── sitemap.ts │ └── style.css ├── lib │ ├── Context │ │ └── PSNavbarProvider.tsx │ ├── features │ │ └── menus │ │ │ ├── authSlice.ts │ │ │ ├── editorSlice.ts │ │ │ ├── menuSlice.ts │ │ │ └── sidebarSlice.ts │ ├── store.ts │ └── utils.ts └── utils │ ├── DateUtils.ts │ ├── firebase.ts │ ├── toast_utils.tsx │ └── utils.ts ├── tailwind.config.ts ├── tree.md ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | .env 2 | .env.local 3 | node_modules -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.firebase/hosting.Lm5leHQvc3RhdGlj.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/.firebase/hosting.Lm5leHQvc3RhdGlj.cache -------------------------------------------------------------------------------- /.firebase/hosting.b3V0.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/.firebase/hosting.b3V0.cache -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/.github/workflows/firebase-hosting-merge.yml -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/.github/workflows/firebase-hosting-pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/.gitignore -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- 1 | functions -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/Changelog.md -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/Contributing.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/components.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/functions/.eslintrc.js -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/functions/.gitignore -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/functions/src/index.ts -------------------------------------------------------------------------------- /functions/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/functions/tsconfig.dev.json -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/favicon/favicon-48x48.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/favicon/favicon.svg -------------------------------------------------------------------------------- /public/favicon/icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/favicon/icon-16x16.png -------------------------------------------------------------------------------- /public/favicon/icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/favicon/icon-180x180.png -------------------------------------------------------------------------------- /public/favicon/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/favicon/icon-192x192.png -------------------------------------------------------------------------------- /public/favicon/icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/favicon/icon-48x48.png -------------------------------------------------------------------------------- /public/favicon/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/favicon/icon-512x512.png -------------------------------------------------------------------------------- /public/images/cover-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/images/cover-dark.png -------------------------------------------------------------------------------- /public/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/images/cover.png -------------------------------------------------------------------------------- /public/images/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/images/frame.png -------------------------------------------------------------------------------- /public/images/gemini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/images/gemini.png -------------------------------------------------------------------------------- /public/images/local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/images/local.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/images/preview.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/workbox-7144475a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/workbox-7144475a.js -------------------------------------------------------------------------------- /public/workbox-7144475a.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/public/workbox-7144475a.js.map -------------------------------------------------------------------------------- /src/app/(main)/_components/CodeHighlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/CodeHighlight.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/CopyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/CopyIcon.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/DatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/DatePicker.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Dialog/Changelog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Dialog/Changelog.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Dialog/Delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Dialog/Delete.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Dialog/GeminiDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Dialog/GeminiDialog.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Dialog/Import.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Dialog/Import.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Dialog/SearchDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Dialog/SearchDialog.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Dialog/Share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Dialog/Share.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Dropdown.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Editor.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/GeminiIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/GeminiIcon.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/GradientText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/GradientText.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/IconButton.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/LoginMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/LoginMenu.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/MDPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/MDPreview.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Navigation.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/PSAccordian.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/PSAccordian.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/PSBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/PSBanner.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/PSInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/PSInput.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/PSNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/PSNavbar.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Pastelog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Pastelog.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/PreviewAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/PreviewAction.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/PreviewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/PreviewPage.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/RouteClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/RouteClient.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/ShortCutWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/ShortCutWrapper.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/ShortcutsGuide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/ShortcutsGuide.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/SideBarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/SideBarItem.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Sidebar.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/TermsAndPrivacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/TermsAndPrivacy.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/ThemeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/ThemeSwitcher.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/ToastProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/ToastProvider.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/Welcome.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/accordion.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/button.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/calendar.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/completion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/completion.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/dialog.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/features/BeautifulMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/features/BeautifulMarkdown.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/features/CreateAndShare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/features/CreateAndShare.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/features/DarkMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/features/DarkMode.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/features/GeminiPowered.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/features/GeminiPowered.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/features/Introduction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/features/Introduction.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/features/KeyboardShortcuts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/features/KeyboardShortcuts.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/features/SaveLocally.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/features/SaveLocally.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/hover-card.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/popover.tsx -------------------------------------------------------------------------------- /src/app/(main)/_components/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_components/select.tsx -------------------------------------------------------------------------------- /src/app/(main)/_hooks/outsideclick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_hooks/outsideclick.ts -------------------------------------------------------------------------------- /src/app/(main)/_hooks/useSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_hooks/useSettings.ts -------------------------------------------------------------------------------- /src/app/(main)/_hooks/useSidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_hooks/useSidebar.ts -------------------------------------------------------------------------------- /src/app/(main)/_hooks/useSmallScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_hooks/useSmallScreen.ts -------------------------------------------------------------------------------- /src/app/(main)/_services/Analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_services/Analytics.ts -------------------------------------------------------------------------------- /src/app/(main)/_services/AuthService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_services/AuthService.ts -------------------------------------------------------------------------------- /src/app/(main)/_services/BannerState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_services/BannerState.ts -------------------------------------------------------------------------------- /src/app/(main)/_services/EditorState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_services/EditorState.ts -------------------------------------------------------------------------------- /src/app/(main)/_services/MDFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_services/MDFormatter.ts -------------------------------------------------------------------------------- /src/app/(main)/_services/UserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_services/UserService.ts -------------------------------------------------------------------------------- /src/app/(main)/_services/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_services/feature.ts -------------------------------------------------------------------------------- /src/app/(main)/_services/logService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/_services/logService.ts -------------------------------------------------------------------------------- /src/app/(main)/logs/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/logs/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/(main)/logs/app_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/logs/app_layout.tsx -------------------------------------------------------------------------------- /src/app/(main)/logs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/logs/layout.tsx -------------------------------------------------------------------------------- /src/app/(main)/logs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(main)/logs/page.tsx -------------------------------------------------------------------------------- /src/app/(policies)/policies/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(policies)/policies/layout.tsx -------------------------------------------------------------------------------- /src/app/(policies)/policies/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(policies)/policies/page.tsx -------------------------------------------------------------------------------- /src/app/(publish)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(publish)/layout.tsx -------------------------------------------------------------------------------- /src/app/(publish)/logs/publish/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/(publish)/logs/publish/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/constants.ts -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/icon.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/markdown.css -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/robots.ts -------------------------------------------------------------------------------- /src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/sitemap.ts -------------------------------------------------------------------------------- /src/app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/app/style.css -------------------------------------------------------------------------------- /src/lib/Context/PSNavbarProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/lib/Context/PSNavbarProvider.tsx -------------------------------------------------------------------------------- /src/lib/features/menus/authSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/lib/features/menus/authSlice.ts -------------------------------------------------------------------------------- /src/lib/features/menus/editorSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/lib/features/menus/editorSlice.ts -------------------------------------------------------------------------------- /src/lib/features/menus/menuSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/lib/features/menus/menuSlice.ts -------------------------------------------------------------------------------- /src/lib/features/menus/sidebarSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/lib/features/menus/sidebarSlice.ts -------------------------------------------------------------------------------- /src/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/lib/store.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/utils/DateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/utils/DateUtils.ts -------------------------------------------------------------------------------- /src/utils/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/utils/firebase.ts -------------------------------------------------------------------------------- /src/utils/toast_utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/utils/toast_utils.tsx -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/tree.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshj01/pastelog/HEAD/yarn.lock --------------------------------------------------------------------------------