├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── README.md ├── astro.config.mjs ├── package.json ├── public └── favicon.svg ├── src ├── components │ ├── Container.astro │ ├── Footer.astro │ ├── FormNewPost.tsx │ └── Nav.astro ├── env.d.ts ├── layouts │ └── Layout.astro ├── lib │ └── appwrite.ts └── pages │ ├── api │ └── generate.ts │ ├── index.astro │ └── posts │ ├── [postSlug].astro │ └── new.astro ├── tailwind.config.mjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /src/components/Container.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/src/components/Container.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/FormNewPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/src/components/FormNewPost.tsx -------------------------------------------------------------------------------- /src/components/Nav.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/src/components/Nav.astro -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/lib/appwrite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/src/lib/appwrite.ts -------------------------------------------------------------------------------- /src/pages/api/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/src/pages/api/generate.ts -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/posts/[postSlug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/src/pages/posts/[postSlug].astro -------------------------------------------------------------------------------- /src/pages/posts/new.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/src/pages/posts/new.astro -------------------------------------------------------------------------------- /tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/tailwind.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-astro-ai-editor/HEAD/tsconfig.json --------------------------------------------------------------------------------