├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── extensions.json └── settings.json ├── @types ├── global.d.ts ├── next-auth.d.ts └── util.d.ts ├── README.md ├── components.json ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prisma └── schema.prisma ├── public ├── opengraph-image.svg └── opensearch.xml ├── src ├── app │ ├── (auth) │ │ ├── layout.tsx │ │ ├── privacy │ │ │ └── page.tsx │ │ └── sign-in │ │ │ └── page.tsx │ ├── (explore) │ │ ├── actions.ts │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ └── page.tsx │ ├── (user) │ │ ├── layout.tsx │ │ └── settings │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ ├── api │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ └── route.ts │ │ └── post │ │ │ └── upload │ │ │ └── route.ts │ ├── apple-icon.tsx │ ├── favicon.ico │ ├── layout.tsx │ ├── post │ │ └── [id] │ │ │ ├── actions.ts │ │ │ ├── layout.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ ├── robots.txt │ └── rss.xml │ │ └── route.ts ├── features │ ├── (auth) │ │ ├── privacy │ │ │ └── index.tsx │ │ └── sign-in │ │ │ ├── components │ │ │ └── sign-in-form.tsx │ │ │ ├── index.tsx │ │ │ └── validators │ │ │ └── auth.ts │ ├── (explore) │ │ ├── components │ │ │ ├── categories │ │ │ │ ├── category-select-box.tsx │ │ │ │ └── index.tsx │ │ │ └── posts │ │ │ │ ├── card-skeletons.tsx │ │ │ │ ├── card.tsx │ │ │ │ └── index.tsx │ │ ├── stores │ │ │ └── index.ts │ │ └── types │ │ │ └── index.ts │ └── post │ │ └── [id] │ │ ├── components │ │ ├── comments │ │ │ ├── comment-form.tsx │ │ │ ├── comment-item.tsx │ │ │ ├── comment-list.tsx │ │ │ ├── comment-skeletons.tsx │ │ │ └── index.tsx │ │ ├── popular-contents │ │ │ ├── index.tsx │ │ │ └── popular-skeletons.tsx │ │ ├── post-header │ │ │ └── index.tsx │ │ └── post-view │ │ │ └── index.tsx │ │ ├── helpers │ │ └── index.ts │ │ ├── types │ │ └── index.ts │ │ └── validators │ │ └── comment.ts ├── lib │ ├── auth.ts │ ├── database.ts │ ├── encrypt.ts │ ├── fonts.ts │ ├── templates │ │ └── mail.ts │ └── utils.ts ├── middleware.ts ├── shared │ ├── components │ │ ├── active-link │ │ │ └── index.tsx │ │ ├── aside │ │ │ └── index.tsx │ │ ├── container │ │ │ └── index.tsx │ │ ├── footer │ │ │ └── index.tsx │ │ ├── header │ │ │ ├── index.tsx │ │ │ ├── profile-nav.tsx │ │ │ ├── search-menu.tsx │ │ │ ├── sign-in-button.tsx │ │ │ └── theme-toggle.tsx │ │ ├── icons │ │ │ ├── facebook-icon.tsx │ │ │ └── github-icon.tsx │ │ ├── markdown │ │ │ ├── index.tsx │ │ │ ├── markdown-code.tsx │ │ │ └── markdown-heading.tsx │ │ ├── side-nav │ │ │ └── index.tsx │ │ ├── theme-provider.tsx │ │ └── ui │ │ │ ├── alert-dialog.tsx │ │ │ ├── avatar.tsx │ │ │ ├── button.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── table.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ └── use-toast.ts │ └── constants │ │ └── index.ts └── styles │ └── globals.css ├── tailwind.config.js └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/shared/components/ui/* -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | src/shared/components/ui/* -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["bradlc.vscode-tailwindcss"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/@types/global.d.ts -------------------------------------------------------------------------------- /@types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/@types/next-auth.d.ts -------------------------------------------------------------------------------- /@types/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/@types/util.d.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/opengraph-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/public/opengraph-image.svg -------------------------------------------------------------------------------- /public/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/public/opensearch.xml -------------------------------------------------------------------------------- /src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/(auth)/privacy/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/(auth)/sign-in/page.tsx -------------------------------------------------------------------------------- /src/app/(explore)/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/(explore)/actions.ts -------------------------------------------------------------------------------- /src/app/(explore)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/(explore)/layout.tsx -------------------------------------------------------------------------------- /src/app/(explore)/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/(explore)/loading.tsx -------------------------------------------------------------------------------- /src/app/(explore)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/(explore)/page.tsx -------------------------------------------------------------------------------- /src/app/(user)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/(user)/layout.tsx -------------------------------------------------------------------------------- /src/app/(user)/settings/loading.tsx: -------------------------------------------------------------------------------- 1 | export default function SettingsLoading() { 2 | return null; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/(user)/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/(user)/settings/page.tsx -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/post/upload/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/api/post/upload/route.ts -------------------------------------------------------------------------------- /src/app/apple-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/apple-icon.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/post/[id]/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/post/[id]/actions.ts -------------------------------------------------------------------------------- /src/app/post/[id]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/post/[id]/layout.tsx -------------------------------------------------------------------------------- /src/app/post/[id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/post/[id]/loading.tsx -------------------------------------------------------------------------------- /src/app/post/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/post/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * -------------------------------------------------------------------------------- /src/app/rss.xml/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/app/rss.xml/route.ts -------------------------------------------------------------------------------- /src/features/(auth)/privacy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/(auth)/privacy/index.tsx -------------------------------------------------------------------------------- /src/features/(auth)/sign-in/components/sign-in-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/(auth)/sign-in/components/sign-in-form.tsx -------------------------------------------------------------------------------- /src/features/(auth)/sign-in/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/(auth)/sign-in/index.tsx -------------------------------------------------------------------------------- /src/features/(auth)/sign-in/validators/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/(auth)/sign-in/validators/auth.ts -------------------------------------------------------------------------------- /src/features/(explore)/components/categories/category-select-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/(explore)/components/categories/category-select-box.tsx -------------------------------------------------------------------------------- /src/features/(explore)/components/categories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/(explore)/components/categories/index.tsx -------------------------------------------------------------------------------- /src/features/(explore)/components/posts/card-skeletons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/(explore)/components/posts/card-skeletons.tsx -------------------------------------------------------------------------------- /src/features/(explore)/components/posts/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/(explore)/components/posts/card.tsx -------------------------------------------------------------------------------- /src/features/(explore)/components/posts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/(explore)/components/posts/index.tsx -------------------------------------------------------------------------------- /src/features/(explore)/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/(explore)/stores/index.ts -------------------------------------------------------------------------------- /src/features/(explore)/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/(explore)/types/index.ts -------------------------------------------------------------------------------- /src/features/post/[id]/components/comments/comment-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/components/comments/comment-form.tsx -------------------------------------------------------------------------------- /src/features/post/[id]/components/comments/comment-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/components/comments/comment-item.tsx -------------------------------------------------------------------------------- /src/features/post/[id]/components/comments/comment-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/components/comments/comment-list.tsx -------------------------------------------------------------------------------- /src/features/post/[id]/components/comments/comment-skeletons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/components/comments/comment-skeletons.tsx -------------------------------------------------------------------------------- /src/features/post/[id]/components/comments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/components/comments/index.tsx -------------------------------------------------------------------------------- /src/features/post/[id]/components/popular-contents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/components/popular-contents/index.tsx -------------------------------------------------------------------------------- /src/features/post/[id]/components/popular-contents/popular-skeletons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/components/popular-contents/popular-skeletons.tsx -------------------------------------------------------------------------------- /src/features/post/[id]/components/post-header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/components/post-header/index.tsx -------------------------------------------------------------------------------- /src/features/post/[id]/components/post-view/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/components/post-view/index.tsx -------------------------------------------------------------------------------- /src/features/post/[id]/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/helpers/index.ts -------------------------------------------------------------------------------- /src/features/post/[id]/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/types/index.ts -------------------------------------------------------------------------------- /src/features/post/[id]/validators/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/features/post/[id]/validators/comment.ts -------------------------------------------------------------------------------- /src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/lib/auth.ts -------------------------------------------------------------------------------- /src/lib/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/lib/database.ts -------------------------------------------------------------------------------- /src/lib/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/lib/encrypt.ts -------------------------------------------------------------------------------- /src/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/lib/fonts.ts -------------------------------------------------------------------------------- /src/lib/templates/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/lib/templates/mail.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/shared/components/active-link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/active-link/index.tsx -------------------------------------------------------------------------------- /src/shared/components/aside/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/aside/index.tsx -------------------------------------------------------------------------------- /src/shared/components/container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/container/index.tsx -------------------------------------------------------------------------------- /src/shared/components/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/footer/index.tsx -------------------------------------------------------------------------------- /src/shared/components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/header/index.tsx -------------------------------------------------------------------------------- /src/shared/components/header/profile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/header/profile-nav.tsx -------------------------------------------------------------------------------- /src/shared/components/header/search-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/header/search-menu.tsx -------------------------------------------------------------------------------- /src/shared/components/header/sign-in-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/header/sign-in-button.tsx -------------------------------------------------------------------------------- /src/shared/components/header/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/header/theme-toggle.tsx -------------------------------------------------------------------------------- /src/shared/components/icons/facebook-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/icons/facebook-icon.tsx -------------------------------------------------------------------------------- /src/shared/components/icons/github-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/icons/github-icon.tsx -------------------------------------------------------------------------------- /src/shared/components/markdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/markdown/index.tsx -------------------------------------------------------------------------------- /src/shared/components/markdown/markdown-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/markdown/markdown-code.tsx -------------------------------------------------------------------------------- /src/shared/components/markdown/markdown-heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/markdown/markdown-heading.tsx -------------------------------------------------------------------------------- /src/shared/components/side-nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/side-nav/index.tsx -------------------------------------------------------------------------------- /src/shared/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/button.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/command.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/form.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/input.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/label.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/select.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/table.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/shared/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/shared/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/shared/constants/index.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh031224/Slog/HEAD/tsconfig.json --------------------------------------------------------------------------------