├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prisma └── schema.prisma ├── public ├── demo-for-readme.png ├── email-logo.png ├── featured │ ├── featured1.jpg │ ├── featured10.jpg │ ├── featured11.jpg │ ├── featured12.jpg │ ├── featured13.jpg │ ├── featured14.jpg │ ├── featured15.jpg │ ├── featured2.jpg │ ├── featured3.jpg │ ├── featured4.jpg │ ├── featured5.jpg │ ├── featured6.jpg │ ├── featured7.jpg │ ├── featured8.jpg │ └── featured9.jpg ├── full-logo.png ├── gifs │ ├── gif1.gif │ ├── gif2.gif │ └── gif3.gif ├── horse-1.png ├── horse-2.png ├── horse-3.png ├── horse-5.png ├── horse-6.png ├── noise.svg ├── of-logo.svg ├── onlyfans.png ├── onlyhorse.png ├── tshirts │ ├── 1.png │ ├── 2.png │ └── 3.png ├── user-placeholder.png └── videos │ └── highlighted-vid.mp4 ├── src ├── app │ ├── api │ │ ├── auth │ │ │ └── [kindeAuth] │ │ │ │ └── route.ts │ │ ├── sign-image │ │ │ └── route.ts │ │ └── webhooks │ │ │ └── stripe │ │ │ └── route.ts │ ├── auth │ │ └── callback │ │ │ ├── actions.ts │ │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── merch │ │ ├── [id] │ │ │ ├── ProductCheckout.tsx │ │ │ ├── actions.ts │ │ │ └── page.tsx │ │ └── page.tsx │ ├── page.tsx │ ├── pricing │ │ └── page.tsx │ ├── purchase-success │ │ ├── PurchaseSummary.tsx │ │ ├── actions.ts │ │ └── page.tsx │ ├── secret-dashboard │ │ ├── actions.ts │ │ ├── analytics │ │ │ └── AnalyticsTab.tsx │ │ ├── content │ │ │ └── ContentTab.tsx │ │ ├── page.tsx │ │ └── store │ │ │ ├── AddNewProductForm.tsx │ │ │ ├── ExistingProducts.tsx │ │ │ └── StoreTab.tsx │ └── update-profile │ │ ├── UpdateProfileForm.tsx │ │ ├── actions.ts │ │ └── page.tsx ├── components │ ├── BaseLayout.tsx │ ├── Footer.tsx │ ├── LogoutButton.tsx │ ├── ModeToggle.tsx │ ├── Pricing.tsx │ ├── ProductCard.tsx │ ├── Sidebar.tsx │ ├── SuggestedProduct.tsx │ ├── SuggestedProducts.tsx │ ├── ZoomedImage.tsx │ ├── decorators │ │ ├── RotatedText.tsx │ │ └── UnderlinedText.tsx │ ├── home │ │ ├── auth-screen │ │ │ ├── AuthButtons.tsx │ │ │ ├── AuthScreen.tsx │ │ │ ├── Features.tsx │ │ │ ├── HeroSection.tsx │ │ │ ├── MasonryGrid.tsx │ │ │ ├── Team.tsx │ │ │ ├── Testimonials.tsx │ │ │ └── TodaysHighlight.tsx │ │ └── home-screen │ │ │ ├── Comment.tsx │ │ │ ├── CoverImage.tsx │ │ │ ├── HomeScreen.tsx │ │ │ ├── Post.tsx │ │ │ ├── Posts.tsx │ │ │ ├── UserProfile.tsx │ │ │ └── actions.ts │ ├── magicui │ │ └── marquee.tsx │ ├── skeletons │ │ ├── PostSkeleton.tsx │ │ └── ProductSkeleton.tsx │ ├── styles │ │ └── pricing.module.css │ └── ui │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── radio-group.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── skeleton.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts ├── db │ └── prisma.ts ├── dummy_data │ └── index.ts ├── emails │ ├── ReceiptEmail.tsx │ └── WelcomeEmail.tsx ├── lib │ ├── stripe.ts │ └── utils.ts └── providers │ ├── TanStackProvider.tsx │ └── ThemeProvider.tsx ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/demo-for-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/demo-for-readme.png -------------------------------------------------------------------------------- /public/email-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/email-logo.png -------------------------------------------------------------------------------- /public/featured/featured1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured1.jpg -------------------------------------------------------------------------------- /public/featured/featured10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured10.jpg -------------------------------------------------------------------------------- /public/featured/featured11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured11.jpg -------------------------------------------------------------------------------- /public/featured/featured12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured12.jpg -------------------------------------------------------------------------------- /public/featured/featured13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured13.jpg -------------------------------------------------------------------------------- /public/featured/featured14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured14.jpg -------------------------------------------------------------------------------- /public/featured/featured15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured15.jpg -------------------------------------------------------------------------------- /public/featured/featured2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured2.jpg -------------------------------------------------------------------------------- /public/featured/featured3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured3.jpg -------------------------------------------------------------------------------- /public/featured/featured4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured4.jpg -------------------------------------------------------------------------------- /public/featured/featured5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured5.jpg -------------------------------------------------------------------------------- /public/featured/featured6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured6.jpg -------------------------------------------------------------------------------- /public/featured/featured7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured7.jpg -------------------------------------------------------------------------------- /public/featured/featured8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured8.jpg -------------------------------------------------------------------------------- /public/featured/featured9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/featured/featured9.jpg -------------------------------------------------------------------------------- /public/full-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/full-logo.png -------------------------------------------------------------------------------- /public/gifs/gif1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/gifs/gif1.gif -------------------------------------------------------------------------------- /public/gifs/gif2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/gifs/gif2.gif -------------------------------------------------------------------------------- /public/gifs/gif3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/gifs/gif3.gif -------------------------------------------------------------------------------- /public/horse-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/horse-1.png -------------------------------------------------------------------------------- /public/horse-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/horse-2.png -------------------------------------------------------------------------------- /public/horse-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/horse-3.png -------------------------------------------------------------------------------- /public/horse-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/horse-5.png -------------------------------------------------------------------------------- /public/horse-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/horse-6.png -------------------------------------------------------------------------------- /public/noise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/noise.svg -------------------------------------------------------------------------------- /public/of-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/of-logo.svg -------------------------------------------------------------------------------- /public/onlyfans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/onlyfans.png -------------------------------------------------------------------------------- /public/onlyhorse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/onlyhorse.png -------------------------------------------------------------------------------- /public/tshirts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/tshirts/1.png -------------------------------------------------------------------------------- /public/tshirts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/tshirts/2.png -------------------------------------------------------------------------------- /public/tshirts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/tshirts/3.png -------------------------------------------------------------------------------- /public/user-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/user-placeholder.png -------------------------------------------------------------------------------- /public/videos/highlighted-vid.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/public/videos/highlighted-vid.mp4 -------------------------------------------------------------------------------- /src/app/api/auth/[kindeAuth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/api/auth/[kindeAuth]/route.ts -------------------------------------------------------------------------------- /src/app/api/sign-image/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/api/sign-image/route.ts -------------------------------------------------------------------------------- /src/app/api/webhooks/stripe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/api/webhooks/stripe/route.ts -------------------------------------------------------------------------------- /src/app/auth/callback/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/auth/callback/actions.ts -------------------------------------------------------------------------------- /src/app/auth/callback/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/auth/callback/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/merch/[id]/ProductCheckout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/merch/[id]/ProductCheckout.tsx -------------------------------------------------------------------------------- /src/app/merch/[id]/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/merch/[id]/actions.ts -------------------------------------------------------------------------------- /src/app/merch/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/merch/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/merch/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/merch/page.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/pricing/page.tsx -------------------------------------------------------------------------------- /src/app/purchase-success/PurchaseSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/purchase-success/PurchaseSummary.tsx -------------------------------------------------------------------------------- /src/app/purchase-success/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/purchase-success/actions.ts -------------------------------------------------------------------------------- /src/app/purchase-success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/purchase-success/page.tsx -------------------------------------------------------------------------------- /src/app/secret-dashboard/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/secret-dashboard/actions.ts -------------------------------------------------------------------------------- /src/app/secret-dashboard/analytics/AnalyticsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/secret-dashboard/analytics/AnalyticsTab.tsx -------------------------------------------------------------------------------- /src/app/secret-dashboard/content/ContentTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/secret-dashboard/content/ContentTab.tsx -------------------------------------------------------------------------------- /src/app/secret-dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/secret-dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/secret-dashboard/store/AddNewProductForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/secret-dashboard/store/AddNewProductForm.tsx -------------------------------------------------------------------------------- /src/app/secret-dashboard/store/ExistingProducts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/secret-dashboard/store/ExistingProducts.tsx -------------------------------------------------------------------------------- /src/app/secret-dashboard/store/StoreTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/secret-dashboard/store/StoreTab.tsx -------------------------------------------------------------------------------- /src/app/update-profile/UpdateProfileForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/update-profile/UpdateProfileForm.tsx -------------------------------------------------------------------------------- /src/app/update-profile/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/update-profile/actions.ts -------------------------------------------------------------------------------- /src/app/update-profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/app/update-profile/page.tsx -------------------------------------------------------------------------------- /src/components/BaseLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/BaseLayout.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/LogoutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/LogoutButton.tsx -------------------------------------------------------------------------------- /src/components/ModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ModeToggle.tsx -------------------------------------------------------------------------------- /src/components/Pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/Pricing.tsx -------------------------------------------------------------------------------- /src/components/ProductCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ProductCard.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/SuggestedProduct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/SuggestedProduct.tsx -------------------------------------------------------------------------------- /src/components/SuggestedProducts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/SuggestedProducts.tsx -------------------------------------------------------------------------------- /src/components/ZoomedImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ZoomedImage.tsx -------------------------------------------------------------------------------- /src/components/decorators/RotatedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/decorators/RotatedText.tsx -------------------------------------------------------------------------------- /src/components/decorators/UnderlinedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/decorators/UnderlinedText.tsx -------------------------------------------------------------------------------- /src/components/home/auth-screen/AuthButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/auth-screen/AuthButtons.tsx -------------------------------------------------------------------------------- /src/components/home/auth-screen/AuthScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/auth-screen/AuthScreen.tsx -------------------------------------------------------------------------------- /src/components/home/auth-screen/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/auth-screen/Features.tsx -------------------------------------------------------------------------------- /src/components/home/auth-screen/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/auth-screen/HeroSection.tsx -------------------------------------------------------------------------------- /src/components/home/auth-screen/MasonryGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/auth-screen/MasonryGrid.tsx -------------------------------------------------------------------------------- /src/components/home/auth-screen/Team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/auth-screen/Team.tsx -------------------------------------------------------------------------------- /src/components/home/auth-screen/Testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/auth-screen/Testimonials.tsx -------------------------------------------------------------------------------- /src/components/home/auth-screen/TodaysHighlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/auth-screen/TodaysHighlight.tsx -------------------------------------------------------------------------------- /src/components/home/home-screen/Comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/home-screen/Comment.tsx -------------------------------------------------------------------------------- /src/components/home/home-screen/CoverImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/home-screen/CoverImage.tsx -------------------------------------------------------------------------------- /src/components/home/home-screen/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/home-screen/HomeScreen.tsx -------------------------------------------------------------------------------- /src/components/home/home-screen/Post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/home-screen/Post.tsx -------------------------------------------------------------------------------- /src/components/home/home-screen/Posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/home-screen/Posts.tsx -------------------------------------------------------------------------------- /src/components/home/home-screen/UserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/home-screen/UserProfile.tsx -------------------------------------------------------------------------------- /src/components/home/home-screen/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/home/home-screen/actions.ts -------------------------------------------------------------------------------- /src/components/magicui/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/magicui/marquee.tsx -------------------------------------------------------------------------------- /src/components/skeletons/PostSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/skeletons/PostSkeleton.tsx -------------------------------------------------------------------------------- /src/components/skeletons/ProductSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/skeletons/ProductSkeleton.tsx -------------------------------------------------------------------------------- /src/components/styles/pricing.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/styles/pricing.module.css -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/db/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/db/prisma.ts -------------------------------------------------------------------------------- /src/dummy_data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/dummy_data/index.ts -------------------------------------------------------------------------------- /src/emails/ReceiptEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/emails/ReceiptEmail.tsx -------------------------------------------------------------------------------- /src/emails/WelcomeEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/emails/WelcomeEmail.tsx -------------------------------------------------------------------------------- /src/lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/lib/stripe.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/providers/TanStackProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/providers/TanStackProvider.tsx -------------------------------------------------------------------------------- /src/providers/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/src/providers/ThemeProvider.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/onlyfans/HEAD/tsconfig.json --------------------------------------------------------------------------------