├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── pnpm-lock.yaml ├── public └── favicon.svg ├── src ├── components │ └── Card.astro ├── env.d.ts ├── layouts │ └── Layout.astro └── pages │ ├── beaches │ └── cherai.md │ ├── cafes │ ├── forwords-cafe.md │ ├── poems-cafe.md │ ├── qissa-cafe.md │ ├── starbucks-edapally.md │ ├── tonico-cafe.md │ ├── urban-forest.md │ └── viibee-cafe.md │ ├── coworking-spaces │ ├── collective-coworks.md │ └── innerspace.md │ └── index.astro └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /src/components/Card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/components/Card.astro -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/pages/beaches/cherai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/pages/beaches/cherai.md -------------------------------------------------------------------------------- /src/pages/cafes/forwords-cafe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/pages/cafes/forwords-cafe.md -------------------------------------------------------------------------------- /src/pages/cafes/poems-cafe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/pages/cafes/poems-cafe.md -------------------------------------------------------------------------------- /src/pages/cafes/qissa-cafe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/pages/cafes/qissa-cafe.md -------------------------------------------------------------------------------- /src/pages/cafes/starbucks-edapally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/pages/cafes/starbucks-edapally.md -------------------------------------------------------------------------------- /src/pages/cafes/tonico-cafe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/pages/cafes/tonico-cafe.md -------------------------------------------------------------------------------- /src/pages/cafes/urban-forest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/pages/cafes/urban-forest.md -------------------------------------------------------------------------------- /src/pages/cafes/viibee-cafe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/pages/cafes/viibee-cafe.md -------------------------------------------------------------------------------- /src/pages/coworking-spaces/collective-coworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/pages/coworking-spaces/collective-coworks.md -------------------------------------------------------------------------------- /src/pages/coworking-spaces/innerspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/pages/coworking-spaces/innerspace.md -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetronjohnson/remotekochi/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/base" 3 | } 4 | --------------------------------------------------------------------------------