├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx ├── robots.ts ├── sign-up │ └── page.tsx └── sitemap.ts ├── components.json ├── components ├── animated-card.tsx ├── buttons.tsx ├── chatgpt-carousel.tsx ├── floating-badge.tsx ├── floating-navbar.tsx ├── mode-toggle.tsx ├── theme-provider.tsx ├── typography.tsx ├── ui │ ├── avatar.tsx │ ├── badge.tsx │ ├── border-beam.tsx │ ├── button.tsx │ ├── card.tsx │ ├── carousel.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ ├── navigation-menu.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── skeleton.tsx │ ├── sonner.tsx │ └── textarea.tsx └── video-player.tsx ├── lib ├── codeSnippets.ts └── utils.ts ├── next.config.js ├── package.json ├── postcss.config.mjs ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/README.md -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/app/robots.ts -------------------------------------------------------------------------------- /app/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/app/sign-up/page.tsx -------------------------------------------------------------------------------- /app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/app/sitemap.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components.json -------------------------------------------------------------------------------- /components/animated-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/animated-card.tsx -------------------------------------------------------------------------------- /components/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/buttons.tsx -------------------------------------------------------------------------------- /components/chatgpt-carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/chatgpt-carousel.tsx -------------------------------------------------------------------------------- /components/floating-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/floating-badge.tsx -------------------------------------------------------------------------------- /components/floating-navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/floating-navbar.tsx -------------------------------------------------------------------------------- /components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/mode-toggle.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/typography.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/border-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/border-beam.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/video-player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/components/video-player.tsx -------------------------------------------------------------------------------- /lib/codeSnippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/lib/codeSnippets.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/styleui-os/HEAD/yarn.lock --------------------------------------------------------------------------------