├── packages
├── webembeds-website
│ ├── pages
│ │ ├── app.css
│ │ ├── _app.tsx
│ │ ├── api
│ │ │ ├── html.ts
│ │ │ └── embed.ts
│ │ ├── _document.tsx
│ │ ├── test.tsx
│ │ └── index.tsx
│ ├── .gitignore
│ ├── next-env.d.ts
│ ├── postcss.config.js
│ ├── public
│ │ ├── favicons
│ │ │ ├── favicon.ico
│ │ │ ├── apple-icon.png
│ │ │ ├── favicon-16x16.png
│ │ │ ├── favicon-32x32.png
│ │ │ ├── favicon-96x96.png
│ │ │ ├── ms-icon-144x144.png
│ │ │ ├── ms-icon-150x150.png
│ │ │ ├── ms-icon-310x310.png
│ │ │ ├── ms-icon-70x70.png
│ │ │ ├── apple-icon-57x57.png
│ │ │ ├── apple-icon-60x60.png
│ │ │ ├── apple-icon-72x72.png
│ │ │ ├── apple-icon-76x76.png
│ │ │ ├── android-icon-144x144.png
│ │ │ ├── android-icon-192x192.png
│ │ │ ├── android-icon-36x36.png
│ │ │ ├── android-icon-48x48.png
│ │ │ ├── android-icon-72x72.png
│ │ │ ├── android-icon-96x96.png
│ │ │ ├── apple-icon-114x114.png
│ │ │ ├── apple-icon-120x120.png
│ │ │ ├── apple-icon-144x144.png
│ │ │ ├── apple-icon-152x152.png
│ │ │ ├── apple-icon-180x180.png
│ │ │ └── apple-icon-precomposed.png
│ │ └── js
│ │ │ └── buttons.js
│ ├── components
│ │ ├── Layout.tsx
│ │ └── Loader.tsx
│ ├── types.ts
│ ├── README.md
│ ├── .eslintrc.json
│ ├── styles
│ │ └── main.css
│ ├── package.json
│ ├── tsconfig.json
│ └── tailwind.config.js
└── webembeds-core
│ ├── .eslintignore
│ ├── .gitignore
│ ├── src
│ ├── utils
│ │ ├── common.ts
│ │ ├── providers
│ │ │ ├── index.ts
│ │ │ ├── codepen.provider.ts
│ │ │ ├── loom.provider.ts
│ │ │ ├── facebook.provider.ts
│ │ │ ├── gist.provider.ts
│ │ │ ├── instagram.provider.ts
│ │ │ ├── tenor.provider.ts
│ │ │ ├── expo.provider.ts
│ │ │ ├── giphy.provider.ts
│ │ │ ├── glitch.provider.ts
│ │ │ ├── snappify.provider.ts
│ │ │ ├── opensea.provider.ts
│ │ │ └── twitch.provider.ts
│ │ ├── graphql.ts
│ │ ├── requestHandler.ts
│ │ └── html.utils.ts
│ ├── index.ts
│ ├── modules
│ │ ├── Platform.ts
│ │ └── WebembedHandler.ts
│ └── types.ts
│ ├── jest.config.ts
│ ├── tsconfig.json
│ ├── .eslintrc.json
│ ├── webpack.config.js
│ ├── README.md
│ └── package.json
├── .env.example
├── .vscode
└── settings.json
├── package.json
├── README.md
├── example.md
└── .gitignore
/packages/webembeds-website/pages/app.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/webembeds-core/.eslintignore:
--------------------------------------------------------------------------------
1 | build/**
2 |
--------------------------------------------------------------------------------
/packages/webembeds-core/.gitignore:
--------------------------------------------------------------------------------
1 | build
2 | node_modules
--------------------------------------------------------------------------------
/packages/webembeds-website/.gitignore:
--------------------------------------------------------------------------------
1 | .next
2 | node_modules
--------------------------------------------------------------------------------
/.env.example:
--------------------------------------------------------------------------------
1 | FB_APP_TOKEN=
2 |
3 | HASHNODE_GRAPHQL_URL=
4 | HASHNODE_GRAPHQL_USER_ACCESS_TOKEN=
--------------------------------------------------------------------------------
/packages/webembeds-website/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
Or select from below
211 | 212 |