├── .env.example ├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── README.md ├── app ├── (home) │ ├── layout.tsx │ └── page.tsx ├── action.ts ├── blog │ └── [id] │ │ └── page.tsx ├── favicon.ico ├── globals.css └── layout.tsx ├── components.json ├── components ├── all-blogs.tsx ├── generate.tsx ├── nav │ ├── footer.tsx │ ├── index.ts │ └── navbar.tsx └── ui │ ├── button.tsx │ ├── card.tsx │ ├── input.tsx │ └── sonner.tsx ├── lib ├── supabase.ts └── utils.ts ├── middleware.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── brand-logo.svg └── brand.png ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/README.md -------------------------------------------------------------------------------- /app/(home)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/app/(home)/layout.tsx -------------------------------------------------------------------------------- /app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/app/(home)/page.tsx -------------------------------------------------------------------------------- /app/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/app/action.ts -------------------------------------------------------------------------------- /app/blog/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/app/blog/[id]/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/components.json -------------------------------------------------------------------------------- /components/all-blogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/components/all-blogs.tsx -------------------------------------------------------------------------------- /components/generate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/components/generate.tsx -------------------------------------------------------------------------------- /components/nav/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/components/nav/footer.tsx -------------------------------------------------------------------------------- /components/nav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/components/nav/index.ts -------------------------------------------------------------------------------- /components/nav/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/components/nav/navbar.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /lib/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/lib/supabase.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/brand-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/public/brand-logo.svg -------------------------------------------------------------------------------- /public/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/public/brand.png -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anayatkhan1/GenieBlog/HEAD/tsconfig.json --------------------------------------------------------------------------------