├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── (auth) │ ├── layout.tsx │ └── login │ │ └── page.tsx ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ └── route.ts │ └── uploadthing │ │ ├── core.ts │ │ └── route.ts ├── dashboard │ ├── (.)p │ │ └── [id] │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ ├── (home) │ │ ├── layout.tsx │ │ └── page.tsx │ ├── (settings) │ │ ├── edit-profile │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── [username] │ │ ├── followers │ │ │ └── page.tsx │ │ ├── following │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── saved │ │ │ └── page.tsx │ ├── create │ │ └── page.tsx │ ├── layout.tsx │ ├── not-found.tsx │ └── p │ │ └── [id] │ │ ├── edit │ │ ├── loading.tsx │ │ └── page.tsx │ │ └── page.tsx ├── favicon.ico ├── fonts.ts ├── globals.css ├── layout.tsx └── page.tsx ├── auth.ts ├── components.json ├── components ├── ActionIcon.tsx ├── AuthProvider.tsx ├── BookmarkButton.tsx ├── Comment.tsx ├── CommentForm.tsx ├── CommentOptions.tsx ├── Comments.tsx ├── EditPost.tsx ├── Error.tsx ├── FollowButton.tsx ├── Follower.tsx ├── FollowersModal.tsx ├── Following.tsx ├── FollowingModal.tsx ├── Header.tsx ├── Like.tsx ├── LoginForm.tsx ├── Logo.tsx ├── MiniPost.tsx ├── MoreDropdown.tsx ├── MorePosts.tsx ├── NavLinks.tsx ├── Post.tsx ├── PostActions.tsx ├── PostOptions.tsx ├── PostView.tsx ├── Posts.tsx ├── PostsGrid.tsx ├── ProfileAvatar.tsx ├── ProfileForm.tsx ├── ProfileHeader.tsx ├── ProfileLink.tsx ├── ProfileTabs.tsx ├── ShareButton.tsx ├── SideNav.tsx ├── SinglePost.tsx ├── Skeletons.tsx ├── SubmitButton.tsx ├── ThemeProvider.tsx ├── Timestamp.tsx ├── UserAvatar.tsx ├── ViewPost.tsx └── ui │ ├── aspect-ratio.tsx │ ├── avatar.tsx │ ├── button.tsx │ ├── card.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input.tsx │ ├── label.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── skeleton.tsx │ ├── switch.tsx │ ├── tabs.tsx │ └── textarea.tsx ├── hooks └── useMount.ts ├── lib ├── actions.ts ├── data.ts ├── definitions.ts ├── prisma.ts ├── schemas.ts ├── uploadthing.ts └── utils.ts ├── middleware.ts ├── next-auth.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── prisma └── schema.prisma ├── public ├── fonts │ └── CalSans-SemiBold.woff2 ├── next.svg └── vercel.svg ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/README.md -------------------------------------------------------------------------------- /app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/uploadthing/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/api/uploadthing/core.ts -------------------------------------------------------------------------------- /app/api/uploadthing/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/api/uploadthing/route.ts -------------------------------------------------------------------------------- /app/dashboard/(.)p/[id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/(.)p/[id]/loading.tsx -------------------------------------------------------------------------------- /app/dashboard/(.)p/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/(.)p/[id]/page.tsx -------------------------------------------------------------------------------- /app/dashboard/(home)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/(home)/layout.tsx -------------------------------------------------------------------------------- /app/dashboard/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/(home)/page.tsx -------------------------------------------------------------------------------- /app/dashboard/(settings)/edit-profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/(settings)/edit-profile/page.tsx -------------------------------------------------------------------------------- /app/dashboard/(settings)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/(settings)/layout.tsx -------------------------------------------------------------------------------- /app/dashboard/[username]/followers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/[username]/followers/page.tsx -------------------------------------------------------------------------------- /app/dashboard/[username]/following/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/[username]/following/page.tsx -------------------------------------------------------------------------------- /app/dashboard/[username]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/[username]/layout.tsx -------------------------------------------------------------------------------- /app/dashboard/[username]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/[username]/page.tsx -------------------------------------------------------------------------------- /app/dashboard/[username]/saved/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/[username]/saved/page.tsx -------------------------------------------------------------------------------- /app/dashboard/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/create/page.tsx -------------------------------------------------------------------------------- /app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /app/dashboard/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/not-found.tsx -------------------------------------------------------------------------------- /app/dashboard/p/[id]/edit/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/p/[id]/edit/loading.tsx -------------------------------------------------------------------------------- /app/dashboard/p/[id]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/p/[id]/edit/page.tsx -------------------------------------------------------------------------------- /app/dashboard/p/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/dashboard/p/[id]/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/fonts.ts -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/app/page.tsx -------------------------------------------------------------------------------- /auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/auth.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components.json -------------------------------------------------------------------------------- /components/ActionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ActionIcon.tsx -------------------------------------------------------------------------------- /components/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/AuthProvider.tsx -------------------------------------------------------------------------------- /components/BookmarkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/BookmarkButton.tsx -------------------------------------------------------------------------------- /components/Comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Comment.tsx -------------------------------------------------------------------------------- /components/CommentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/CommentForm.tsx -------------------------------------------------------------------------------- /components/CommentOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/CommentOptions.tsx -------------------------------------------------------------------------------- /components/Comments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Comments.tsx -------------------------------------------------------------------------------- /components/EditPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/EditPost.tsx -------------------------------------------------------------------------------- /components/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Error.tsx -------------------------------------------------------------------------------- /components/FollowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/FollowButton.tsx -------------------------------------------------------------------------------- /components/Follower.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Follower.tsx -------------------------------------------------------------------------------- /components/FollowersModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/FollowersModal.tsx -------------------------------------------------------------------------------- /components/Following.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Following.tsx -------------------------------------------------------------------------------- /components/FollowingModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/FollowingModal.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/Like.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Like.tsx -------------------------------------------------------------------------------- /components/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/LoginForm.tsx -------------------------------------------------------------------------------- /components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Logo.tsx -------------------------------------------------------------------------------- /components/MiniPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/MiniPost.tsx -------------------------------------------------------------------------------- /components/MoreDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/MoreDropdown.tsx -------------------------------------------------------------------------------- /components/MorePosts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/MorePosts.tsx -------------------------------------------------------------------------------- /components/NavLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/NavLinks.tsx -------------------------------------------------------------------------------- /components/Post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Post.tsx -------------------------------------------------------------------------------- /components/PostActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/PostActions.tsx -------------------------------------------------------------------------------- /components/PostOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/PostOptions.tsx -------------------------------------------------------------------------------- /components/PostView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/PostView.tsx -------------------------------------------------------------------------------- /components/Posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Posts.tsx -------------------------------------------------------------------------------- /components/PostsGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/PostsGrid.tsx -------------------------------------------------------------------------------- /components/ProfileAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ProfileAvatar.tsx -------------------------------------------------------------------------------- /components/ProfileForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ProfileForm.tsx -------------------------------------------------------------------------------- /components/ProfileHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ProfileHeader.tsx -------------------------------------------------------------------------------- /components/ProfileLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ProfileLink.tsx -------------------------------------------------------------------------------- /components/ProfileTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ProfileTabs.tsx -------------------------------------------------------------------------------- /components/ShareButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ShareButton.tsx -------------------------------------------------------------------------------- /components/SideNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/SideNav.tsx -------------------------------------------------------------------------------- /components/SinglePost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/SinglePost.tsx -------------------------------------------------------------------------------- /components/Skeletons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Skeletons.tsx -------------------------------------------------------------------------------- /components/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/SubmitButton.tsx -------------------------------------------------------------------------------- /components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /components/Timestamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/Timestamp.tsx -------------------------------------------------------------------------------- /components/UserAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/UserAvatar.tsx -------------------------------------------------------------------------------- /components/ViewPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ViewPost.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /hooks/useMount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/hooks/useMount.ts -------------------------------------------------------------------------------- /lib/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/lib/actions.ts -------------------------------------------------------------------------------- /lib/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/lib/data.ts -------------------------------------------------------------------------------- /lib/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/lib/definitions.ts -------------------------------------------------------------------------------- /lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/lib/prisma.ts -------------------------------------------------------------------------------- /lib/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/lib/schemas.ts -------------------------------------------------------------------------------- /lib/uploadthing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/lib/uploadthing.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/middleware.ts -------------------------------------------------------------------------------- /next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/next-auth.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/fonts/CalSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/public/fonts/CalSans-SemiBold.woff2 -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukef7fywmrp/pixelgram-yt/HEAD/tsconfig.json --------------------------------------------------------------------------------