├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── app ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ ├── options.ts │ │ │ └── route.ts │ └── users │ │ └── setup-profile │ │ └── route.ts ├── app │ ├── (auth) │ │ ├── layout.tsx │ │ ├── login │ │ │ ├── login-button.tsx │ │ │ └── page.tsx │ │ └── setup-profile │ │ │ └── page.tsx │ ├── (dashboard) │ │ ├── comingSoon.tsx │ │ ├── create-team │ │ │ └── page.tsx │ │ ├── header.tsx │ │ ├── layout.tsx │ │ ├── menu-button.tsx │ │ ├── page.tsx │ │ ├── pro-plan-banner.tsx │ │ ├── pro │ │ │ └── page.tsx │ │ ├── profile.tsx │ │ ├── projects │ │ │ └── page.tsx │ │ ├── sidebar-wrapper.tsx │ │ ├── sidebar.tsx │ │ ├── signout-button.tsx │ │ ├── templates │ │ │ └── page.tsx │ │ └── trash │ │ │ └── page.tsx │ └── create │ │ ├── header.tsx │ │ ├── mobile-menu.tsx │ │ ├── page.tsx │ │ ├── sidebar.tsx │ │ ├── tiptap.tsx │ │ └── toolbar.tsx ├── globals.css ├── home │ ├── get-started.tsx │ ├── hero-parallax.tsx │ ├── page.tsx │ └── sparkles.tsx ├── layout.tsx ├── providers.tsx └── state │ └── atoms │ └── home-sidebar.ts ├── components.json ├── components ├── canvas.tsx ├── code-view.tsx ├── control-panel.tsx ├── form │ ├── login-form.tsx │ └── setup-profile-form.tsx ├── header.tsx ├── icons │ ├── loading-circle.tsx │ ├── loading-dots.module.css │ ├── loading-dots.tsx │ └── magic.tsx ├── logout-button.tsx ├── nodes │ ├── cell.tsx │ ├── index.ts │ └── nodeButton.tsx ├── profile.tsx ├── react-iframe.tsx ├── render-node.tsx ├── settings-control.tsx ├── theme-provider.tsx ├── tiptap │ ├── menu.tsx │ └── slash-command.tsx ├── truncate-string.ts └── ui │ ├── accordion.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── card.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── input.tsx │ ├── label.tsx │ ├── logo.tsx │ ├── navigation-menu.tsx │ ├── profile-avatar.tsx │ ├── resizable.tsx │ ├── separator.tsx │ ├── settings-control.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── tabs.tsx │ ├── theme-toggle.tsx │ ├── toggle.tsx │ ├── tooltip.tsx │ └── vertical-navigation-menu.tsx ├── lib ├── code-gen.tsx ├── hooks │ └── use-window-size.ts ├── prisma.ts ├── tw-classes.ts └── utils.ts ├── middleware.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.js ├── prisma └── schema.prisma ├── public ├── ProfilePlaceholder.png ├── Sprinkle.svg ├── cute-dog-with-a-bone.svg ├── empty-state.png ├── favicon.ico ├── logo-square.png ├── logo.png ├── logo.webp ├── man-on-a-bicycle.svg ├── og-image.png ├── page-under-construction.svg ├── placeholder.png ├── producthunt.png ├── thumbnail.png ├── undraw_awesome_rlvy.svg ├── undraw_taken_re_yn20.svg ├── undraw_under_construction_-46-pa.svg └── vercel.svg ├── styles ├── CalSans-SemiBold.otf ├── fonts.ts └── globals.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml 2 | node_modules 3 | .next -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Open source alternative for AI enabled no-code website builder 2 | -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/api/auth/[...nextauth]/options.ts -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/users/setup-profile/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/api/users/setup-profile/route.ts -------------------------------------------------------------------------------- /app/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /app/app/(auth)/login/login-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(auth)/login/login-button.tsx -------------------------------------------------------------------------------- /app/app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /app/app/(auth)/setup-profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(auth)/setup-profile/page.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/comingSoon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/comingSoon.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/create-team/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/create-team/page.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/header.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/menu-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/menu-button.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/page.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/pro-plan-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/pro-plan-banner.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/pro/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/pro/page.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/profile.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/projects/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/projects/page.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/sidebar-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/sidebar-wrapper.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/sidebar.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/signout-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/signout-button.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/templates/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/templates/page.tsx -------------------------------------------------------------------------------- /app/app/(dashboard)/trash/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/(dashboard)/trash/page.tsx -------------------------------------------------------------------------------- /app/app/create/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/create/header.tsx -------------------------------------------------------------------------------- /app/app/create/mobile-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/create/mobile-menu.tsx -------------------------------------------------------------------------------- /app/app/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/create/page.tsx -------------------------------------------------------------------------------- /app/app/create/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/create/sidebar.tsx -------------------------------------------------------------------------------- /app/app/create/tiptap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/create/tiptap.tsx -------------------------------------------------------------------------------- /app/app/create/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/app/create/toolbar.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/home/get-started.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/home/get-started.tsx -------------------------------------------------------------------------------- /app/home/hero-parallax.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/home/hero-parallax.tsx -------------------------------------------------------------------------------- /app/home/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/home/page.tsx -------------------------------------------------------------------------------- /app/home/sparkles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/home/sparkles.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/providers.tsx -------------------------------------------------------------------------------- /app/state/atoms/home-sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/app/state/atoms/home-sidebar.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components.json -------------------------------------------------------------------------------- /components/canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/canvas.tsx -------------------------------------------------------------------------------- /components/code-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/code-view.tsx -------------------------------------------------------------------------------- /components/control-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/control-panel.tsx -------------------------------------------------------------------------------- /components/form/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/form/login-form.tsx -------------------------------------------------------------------------------- /components/form/setup-profile-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/form/setup-profile-form.tsx -------------------------------------------------------------------------------- /components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/header.tsx -------------------------------------------------------------------------------- /components/icons/loading-circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/icons/loading-circle.tsx -------------------------------------------------------------------------------- /components/icons/loading-dots.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/icons/loading-dots.module.css -------------------------------------------------------------------------------- /components/icons/loading-dots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/icons/loading-dots.tsx -------------------------------------------------------------------------------- /components/icons/magic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/icons/magic.tsx -------------------------------------------------------------------------------- /components/logout-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/logout-button.tsx -------------------------------------------------------------------------------- /components/nodes/cell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/nodes/cell.tsx -------------------------------------------------------------------------------- /components/nodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/nodes/index.ts -------------------------------------------------------------------------------- /components/nodes/nodeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/nodes/nodeButton.tsx -------------------------------------------------------------------------------- /components/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/profile.tsx -------------------------------------------------------------------------------- /components/react-iframe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/react-iframe.tsx -------------------------------------------------------------------------------- /components/render-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/render-node.tsx -------------------------------------------------------------------------------- /components/settings-control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/settings-control.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/tiptap/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/tiptap/menu.tsx -------------------------------------------------------------------------------- /components/tiptap/slash-command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/tiptap/slash-command.tsx -------------------------------------------------------------------------------- /components/truncate-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/truncate-string.ts -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/logo.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/profile-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/profile-avatar.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/settings-control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/settings-control.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/theme-toggle.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/vertical-navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/components/ui/vertical-navigation-menu.tsx -------------------------------------------------------------------------------- /lib/code-gen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/lib/code-gen.tsx -------------------------------------------------------------------------------- /lib/hooks/use-window-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/lib/hooks/use-window-size.ts -------------------------------------------------------------------------------- /lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/lib/prisma.ts -------------------------------------------------------------------------------- /lib/tw-classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/lib/tw-classes.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/middleware.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/prettier.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/ProfilePlaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/ProfilePlaceholder.png -------------------------------------------------------------------------------- /public/Sprinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/Sprinkle.svg -------------------------------------------------------------------------------- /public/cute-dog-with-a-bone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/cute-dog-with-a-bone.svg -------------------------------------------------------------------------------- /public/empty-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/empty-state.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/logo-square.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/logo.webp -------------------------------------------------------------------------------- /public/man-on-a-bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/man-on-a-bicycle.svg -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/page-under-construction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/page-under-construction.svg -------------------------------------------------------------------------------- /public/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/placeholder.png -------------------------------------------------------------------------------- /public/producthunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/producthunt.png -------------------------------------------------------------------------------- /public/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/thumbnail.png -------------------------------------------------------------------------------- /public/undraw_awesome_rlvy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/undraw_awesome_rlvy.svg -------------------------------------------------------------------------------- /public/undraw_taken_re_yn20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/undraw_taken_re_yn20.svg -------------------------------------------------------------------------------- /public/undraw_under_construction_-46-pa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/undraw_under_construction_-46-pa.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/CalSans-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/styles/CalSans-SemiBold.otf -------------------------------------------------------------------------------- /styles/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/styles/fonts.ts -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SammitBadodekar/Webstr/HEAD/tsconfig.json --------------------------------------------------------------------------------