├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── pull_request_template.md └── workflows │ ├── avowed.yml │ ├── claude-code-review.yml │ ├── claude.yml │ ├── diablo4-preview.yml │ ├── diablo4-production.yml │ ├── hogwarts-preview.yml │ ├── hogwarts-production.yml │ ├── once-human-preview.yml │ ├── once-human-production.yml │ ├── palia-preview.yml │ ├── palworld-preview.yml │ ├── palworld-production.yml │ ├── pax-dei-preview.yml │ ├── pax-dei-production.yml │ ├── satisfactory-preview.yml │ ├── wuthering-preview.yml │ └── wuthering-production.yml ├── .gitignore ├── .prettierrc ├── .vercelignore ├── .vscode ├── extensions.json └── settings.json ├── CLAUDE.md ├── GUIDELINES.md ├── LICENSE ├── README.md ├── apps ├── avowed-overwolf │ ├── .eslintrc.js │ ├── background.html │ ├── icons │ │ ├── icon.png │ │ ├── icon_gray.png │ │ └── launcher_icon.ico │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── plugins │ │ ├── DiscordRPC.dll │ │ ├── DiscordRPCPlugin.dll │ │ ├── GameEventsPlugin.dll │ │ └── Newtonsoft.Json.dll │ ├── postcss.config.mjs │ ├── public │ │ └── favicon.ico │ ├── scripts │ │ ├── copy-overwolf.ts │ │ └── release-overwolf.mjs │ ├── src │ │ ├── background.tsx │ │ ├── config.ts │ │ ├── main.tsx │ │ └── styles │ │ │ └── globals.css │ ├── store │ │ ├── app_icon.png │ │ ├── screenshot1.webp │ │ ├── screenshot2.webp │ │ └── screenshot3.webp │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── turbo.json │ └── vite.config.ts ├── avowed-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── layout.tsx │ │ │ ├── maps │ │ │ │ ├── [map] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── page.tsx │ │ │ ├── robots.txt │ │ │ └── sitemap.ts │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── blue-protocol-star-resonance-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── (en) │ │ │ │ ├── activities-tracker │ │ │ │ │ └── page.tsx │ │ │ │ ├── db │ │ │ │ │ ├── dictionary │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── reading-books │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── story │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── guides │ │ │ │ │ ├── [type] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── maps │ │ │ │ │ ├── [map] │ │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── [locale] │ │ │ │ ├── activities-tracker │ │ │ │ │ └── page.tsx │ │ │ │ ├── db │ │ │ │ │ ├── dictionary │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── reading-books │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── story │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── guides │ │ │ │ │ ├── [type] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── maps │ │ │ │ │ ├── [map] │ │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── robots.txt │ │ │ └── sitemap.ts │ │ ├── components │ │ │ └── database-sidebar.tsx │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── chrono-odyssey-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── heatmaps │ │ │ ├── bp_a_survival_aluminum_heatmap.webp │ │ │ ├── bp_a_survival_basalt_heatmap.webp │ │ │ ├── bp_a_survival_carbon_heatmap.webp │ │ │ ├── bp_a_survival_cistanche_heatmap.webp │ │ │ ├── bp_a_survival_copper_heatmap.webp │ │ │ ├── bp_a_survival_erythrite_heatmap.webp │ │ │ ├── bp_a_survival_fiber_heatmap.webp │ │ │ ├── bp_a_survival_fuel_heatmap.webp │ │ │ ├── bp_a_survival_iron_heatmap.webp │ │ │ ├── bp_a_survival_jasmium_heatmap.webp │ │ │ ├── bp_a_survival_primrosefield_heatmap.webp │ │ │ ├── bp_a_survival_rogue_copper_heatmap.webp │ │ │ ├── bp_a_survival_rogue_fuel_heatmap.webp │ │ │ ├── bp_a_survival_rogue_scrap_heatmap.webp │ │ │ ├── bp_a_survival_rogue_stone_heatmap.webp │ │ │ ├── bp_a_survival_saguaro_heatmap.webp │ │ │ ├── bp_a_survival_scrap_heatmap.webp │ │ │ ├── bp_a_survival_stone_heatmap.webp │ │ │ ├── bp_buriedtreasure_1_heatmap.webp │ │ │ ├── bp_deep_desert_buriedtreasure_01_heatmap.webp │ │ │ ├── bp_sandworm_territories_heatmap.webp │ │ │ └── bp_sandworm_territories_survival_map_heatmap.webp │ │ ├── private-servers-tile.webp │ │ └── private-servers.webp │ ├── src │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── layout.tsx │ │ │ ├── maps │ │ │ │ ├── [map] │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── page.tsx │ │ │ ├── robots.txt │ │ │ └── sitemap.ts │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── diablo4-overwolf │ ├── .eslintrc.js │ ├── background.html │ ├── icons │ │ ├── icon.png │ │ ├── icon_gray.png │ │ └── launcher_icon.ico │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── plugins │ │ ├── DiscordRPC.dll │ │ ├── DiscordRPCPlugin.dll │ │ └── Newtonsoft.Json.dll │ ├── postcss.config.mjs │ ├── public │ │ └── favicon.ico │ ├── scripts │ │ ├── copy-overwolf.ts │ │ └── release-overwolf.mjs │ ├── src │ │ ├── background.tsx │ │ ├── config.ts │ │ ├── main.tsx │ │ └── styles │ │ │ └── globals.css │ ├── store │ │ ├── app_icon.png │ │ ├── screenshot1.jpg │ │ ├── screenshot2.jpg │ │ ├── screenshot3.jpg │ │ ├── screenshot4.jpg │ │ ├── tile.jpg │ │ └── tile.xcf │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── turbo.json │ └── vite.config.ts ├── diablo4-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── (mobalytics) │ │ │ │ ├── layout.tsx │ │ │ │ └── mobalytics │ │ │ │ │ └── page.tsx │ │ │ ├── (root) │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── vessel-of-hatred │ │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ └── robots.txt │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── duet-night-abyss-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── (en) │ │ │ │ ├── activities-tracker │ │ │ │ │ └── page.tsx │ │ │ │ ├── db │ │ │ │ │ └── quests │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── guides │ │ │ │ │ ├── [type] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── maps │ │ │ │ │ ├── [map] │ │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── [locale] │ │ │ │ ├── activities-tracker │ │ │ │ │ └── page.tsx │ │ │ │ ├── db │ │ │ │ │ └── quests │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── guides │ │ │ │ │ ├── [type] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── maps │ │ │ │ │ ├── [map] │ │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── robots.txt │ │ │ └── sitemap.ts │ │ ├── components │ │ │ └── database-sidebar.tsx │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── dune-awakening-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── discount.webp │ │ ├── heatmaps │ │ │ ├── bp_a_survival_aluminum_heatmap.webp │ │ │ ├── bp_a_survival_basalt_heatmap.webp │ │ │ ├── bp_a_survival_carbon_heatmap.webp │ │ │ ├── bp_a_survival_cistanche_heatmap.webp │ │ │ ├── bp_a_survival_copper_heatmap.webp │ │ │ ├── bp_a_survival_erythrite_heatmap.webp │ │ │ ├── bp_a_survival_fiber_heatmap.webp │ │ │ ├── bp_a_survival_fuel_heatmap.webp │ │ │ ├── bp_a_survival_iron_heatmap.webp │ │ │ ├── bp_a_survival_jasmium_heatmap.webp │ │ │ ├── bp_a_survival_primrosefield_heatmap.webp │ │ │ ├── bp_a_survival_rogue_copper_heatmap.webp │ │ │ ├── bp_a_survival_rogue_fuel_heatmap.webp │ │ │ ├── bp_a_survival_rogue_scrap_heatmap.webp │ │ │ ├── bp_a_survival_rogue_stone_heatmap.webp │ │ │ ├── bp_a_survival_saguaro_heatmap.webp │ │ │ ├── bp_a_survival_scrap_heatmap.webp │ │ │ ├── bp_a_survival_stone_heatmap.webp │ │ │ ├── bp_buriedtreasure_1_heatmap.webp │ │ │ ├── bp_deep_desert_buriedtreasure_01_heatmap.webp │ │ │ ├── bp_sandworm_territories_heatmap.webp │ │ │ └── bp_sandworm_territories_survival_map_heatmap.webp │ │ ├── private-servers-tile.webp │ │ └── private-servers.webp │ ├── src │ │ ├── app │ │ │ ├── (en) │ │ │ │ ├── guides │ │ │ │ │ ├── [type] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── maps │ │ │ │ │ ├── [map] │ │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── private-servers │ │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ │ ├── opengraph-image.jpg │ │ │ │ │ └── page.tsx │ │ │ ├── [locale] │ │ │ │ ├── guides │ │ │ │ │ ├── [type] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── maps │ │ │ │ │ ├── [map] │ │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── private-servers │ │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ │ ├── opengraph-image.jpg │ │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── robots.txt │ │ │ └── sitemap.ts │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── grounded2-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── (en) │ │ │ │ ├── guides │ │ │ │ │ ├── [type] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── maps │ │ │ │ │ ├── [map] │ │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── [locale] │ │ │ │ ├── guides │ │ │ │ │ ├── [type] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── maps │ │ │ │ │ ├── [map] │ │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── robots.txt │ │ │ └── sitemap.ts │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── hogwarts-legacy-overwolf │ ├── .eslintrc.js │ ├── background.html │ ├── icons │ │ ├── icon.png │ │ ├── icon_gray.png │ │ └── launcher_icon.ico │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── plugins │ │ ├── DiscordRPC.dll │ │ ├── DiscordRPCPlugin.dll │ │ ├── GameEventsPlugin.dll │ │ └── Newtonsoft.Json.dll │ ├── postcss.config.mjs │ ├── public │ │ └── favicon.ico │ ├── scripts │ │ ├── copy-overwolf.ts │ │ └── release-overwolf.mjs │ ├── src │ │ ├── background.tsx │ │ ├── config.ts │ │ ├── main.tsx │ │ └── styles │ │ │ └── globals.css │ ├── store │ │ ├── app_icon.png │ │ ├── screenshot1.jpg │ │ ├── screenshot2.jpg │ │ ├── screenshot3.jpg │ │ ├── tile.jpg │ │ └── tile.xcf │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── turbo.json │ └── vite.config.ts ├── hogwarts-legacy-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── layout.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── page.tsx │ │ │ └── robots.txt │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── infinity-nikki-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── layout.tsx │ │ │ ├── maps │ │ │ │ ├── [map] │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── page.tsx │ │ │ ├── robots.txt │ │ │ └── sitemap.ts │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── night-crows-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── activities-tracker │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ ├── opengraph-image.jpg │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── layout.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── page.tsx │ │ │ └── robots.txt │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── once-human-overwolf │ ├── .eslintrc.js │ ├── background.html │ ├── icons │ │ ├── icon.png │ │ ├── icon_gray.png │ │ └── launcher_icon.ico │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── plugins │ │ ├── DiscordRPC.dll │ │ ├── DiscordRPCPlugin.dll │ │ ├── GameEventsPlugin.dll │ │ ├── NativeGameEvents.dll │ │ └── Newtonsoft.Json.dll │ ├── postcss.config.mjs │ ├── public │ │ └── favicon.ico │ ├── scripts │ │ ├── copy-overwolf.ts │ │ └── release-overwolf.mjs │ ├── src │ │ ├── background.tsx │ │ ├── config.ts │ │ ├── main.tsx │ │ └── styles │ │ │ └── globals.css │ ├── store │ │ ├── app_icon.png │ │ ├── screenshot1.jpg │ │ ├── screenshot2.jpg │ │ ├── screenshot3.jpg │ │ └── tile.jpg │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── turbo.json │ └── vite.config.ts ├── once-human-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── deviant-locations │ │ │ │ ├── columns.tsx │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ ├── opengraph-image.jpg │ │ │ │ └── page.tsx │ │ │ ├── echoes-of-stardust │ │ │ │ ├── [id] │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ ├── opengraph-image.jpg │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── guides │ │ │ │ ├── [type] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── maps │ │ │ │ ├── [map] │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── mod-locations │ │ │ │ ├── columns.tsx │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ ├── opengraph-image.jpg │ │ │ │ └── page.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── page.tsx │ │ │ ├── regional-records │ │ │ │ ├── [id] │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ ├── opengraph-image.jpg │ │ │ │ └── page.tsx │ │ │ ├── remnants │ │ │ │ ├── [id] │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ ├── opengraph-image.jpg │ │ │ │ └── page.tsx │ │ │ ├── robots.txt │ │ │ ├── sitemap.ts │ │ │ └── weapons │ │ │ │ ├── columns.tsx │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ ├── opengraph-image.jpg │ │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── database-sidebar.tsx │ │ │ ├── simple-map-client.tsx │ │ │ └── simple-map-dynamic.tsx │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── palia-overwolf │ ├── .eslintrc.js │ ├── background.html │ ├── icons │ │ ├── icon.png │ │ ├── icon_gray.png │ │ └── launcher_icon.ico │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── plugins │ │ ├── DiscordRPC.dll │ │ ├── DiscordRPCPlugin.dll │ │ ├── GameEventsPlugin.dll │ │ └── Newtonsoft.Json.dll │ ├── postcss.config.mjs │ ├── public │ │ └── favicon.ico │ ├── scripts │ │ ├── copy-overwolf.ts │ │ └── release-overwolf.mjs │ ├── src │ │ ├── background.tsx │ │ ├── config.ts │ │ ├── main.tsx │ │ └── styles │ │ │ └── globals.css │ ├── store │ │ ├── app_icon.png │ │ ├── screenshot1.jpg │ │ ├── screenshot2.jpg │ │ └── screenshot3.jpg │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── turbo.json │ └── vite.config.ts ├── palia-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── leaderboard.webp │ │ ├── rummage-pile.webp │ │ └── weekly-wants.webp │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ └── revalidate │ │ │ │ │ └── route.ts │ │ │ ├── favicon.ico │ │ │ ├── layout.tsx │ │ │ ├── leaderboard │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ ├── opengraph-image.jpg │ │ │ │ └── page.tsx │ │ │ ├── maps │ │ │ │ ├── [map] │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── page.tsx │ │ │ ├── robots.txt │ │ │ ├── rummage-pile │ │ │ │ ├── filter.webp │ │ │ │ ├── map.webp │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ ├── opengraph-image.jpg │ │ │ │ └── page.tsx │ │ │ ├── sitemap.ts │ │ │ └── weekly-wants │ │ │ │ ├── opengraph-image.alt.txt │ │ │ │ ├── opengraph-image.jpg │ │ │ │ ├── page.tsx │ │ │ │ ├── villagers.webp │ │ │ │ └── weekly-wants.webp │ │ ├── components │ │ │ ├── pile-map-client.tsx │ │ │ └── pile-map-dynamic.tsx │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── palworld-overwolf │ ├── .eslintrc.js │ ├── background.html │ ├── icons │ │ ├── icon.png │ │ ├── icon_gray.png │ │ └── launcher_icon.ico │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── plugins │ │ ├── DiscordRPC.dll │ │ ├── DiscordRPCPlugin.dll │ │ ├── Newtonsoft.Json.dll │ │ └── Palworld.dll │ ├── postcss.config.mjs │ ├── public │ │ └── favicon.ico │ ├── scripts │ │ ├── copy-overwolf.ts │ │ └── release-overwolf.mjs │ ├── src │ │ ├── background.tsx │ │ ├── config.ts │ │ ├── main.tsx │ │ └── styles │ │ │ └── globals.css │ ├── store │ │ ├── app_icon.png │ │ ├── screenshot1.jpg │ │ ├── screenshot2.jpg │ │ ├── screenshot3.jpg │ │ ├── tile.jpg │ │ └── tile.xcf │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── turbo.json │ └── vite.config.ts ├── palworld-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── guides │ │ │ │ ├── [type] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── maps │ │ │ │ ├── [map] │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── page.tsx │ │ │ ├── robots.txt │ │ │ └── sitemap.ts │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── pax-dei-overwolf │ ├── .eslintrc.js │ ├── background.html │ ├── icons │ │ ├── icon.png │ │ ├── icon_gray.png │ │ └── launcher_icon.ico │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── plugins │ │ ├── DiscordRPC.dll │ │ ├── DiscordRPCPlugin.dll │ │ ├── GameEventsPlugin.dll │ │ └── Newtonsoft.Json.dll │ ├── postcss.config.mjs │ ├── public │ │ └── favicon.ico │ ├── scripts │ │ ├── copy-overwolf.ts │ │ └── release-overwolf.mjs │ ├── src │ │ ├── background.tsx │ │ ├── config.ts │ │ ├── main.tsx │ │ └── styles │ │ │ └── globals.css │ ├── store │ │ ├── app_icon.png │ │ ├── screenshot1.jpg │ │ ├── screenshot2.jpg │ │ └── screenshot3.jpg │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── turbo.json │ └── vite.config.ts ├── pax-dei-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── layout.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── page.tsx │ │ │ └── robots.txt │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── rsdragonwilds-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── layout.tsx │ │ │ ├── maps │ │ │ │ ├── [map] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── page.tsx │ │ │ ├── robots.txt │ │ │ └── sitemap.ts │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── satisfactory-overwolf │ ├── .eslintrc.js │ ├── background.html │ ├── icons │ │ ├── icon.png │ │ ├── icon_gray.png │ │ └── launcher_icon.ico │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── plugins │ │ ├── DiscordRPC.dll │ │ ├── DiscordRPCPlugin.dll │ │ ├── GameEventsPlugin.dll │ │ └── Newtonsoft.Json.dll │ ├── postcss.config.mjs │ ├── public │ │ └── favicon.ico │ ├── scripts │ │ ├── copy-overwolf.ts │ │ └── release-overwolf.mjs │ ├── src │ │ ├── background.tsx │ │ ├── config.ts │ │ ├── main.tsx │ │ └── styles │ │ │ └── globals.css │ ├── store │ │ ├── app_icon.png │ │ ├── screenshot1.webp │ │ ├── screenshot2.webp │ │ └── screenshot3.webp │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── turbo.json │ └── vite.config.ts ├── satisfactory-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── layout.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── page.tsx │ │ │ └── robots.txt │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── soulframe-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ └── screenshot.jpg │ ├── src │ │ ├── app │ │ │ ├── (en) │ │ │ │ ├── guides │ │ │ │ │ ├── [type] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── maps │ │ │ │ │ ├── [map] │ │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── [locale] │ │ │ │ ├── guides │ │ │ │ │ ├── [type] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── maps │ │ │ │ │ ├── [map] │ │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.jpg │ │ │ ├── robots.txt │ │ │ └── sitemap.ts │ │ ├── config.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── thgl-app │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── THGL_Installer.exe │ │ ├── cave128.png │ │ ├── heatmaps │ │ │ ├── bp_a_survival_aluminum_heatmap.webp │ │ │ ├── bp_a_survival_basalt_heatmap.webp │ │ │ ├── bp_a_survival_carbon_heatmap.webp │ │ │ ├── bp_a_survival_cistanche_heatmap.webp │ │ │ ├── bp_a_survival_copper_heatmap.webp │ │ │ ├── bp_a_survival_erythrite_heatmap.webp │ │ │ ├── bp_a_survival_fiber_heatmap.webp │ │ │ ├── bp_a_survival_fuel_heatmap.webp │ │ │ ├── bp_a_survival_iron_heatmap.webp │ │ │ ├── bp_a_survival_jasmium_heatmap.webp │ │ │ ├── bp_a_survival_primrosefield_heatmap.webp │ │ │ ├── bp_a_survival_rogue_copper_heatmap.webp │ │ │ ├── bp_a_survival_rogue_fuel_heatmap.webp │ │ │ ├── bp_a_survival_rogue_scrap_heatmap.webp │ │ │ ├── bp_a_survival_rogue_stone_heatmap.webp │ │ │ ├── bp_a_survival_saguaro_heatmap.webp │ │ │ ├── bp_a_survival_scrap_heatmap.webp │ │ │ ├── bp_a_survival_stone_heatmap.webp │ │ │ ├── bp_a_survival_t6resourcea_heatmap.webp │ │ │ ├── bp_a_survival_t6resourceb_heatmap.webp │ │ │ ├── bp_buriedtreasure_1_heatmap.webp │ │ │ ├── bp_deep_desert_buriedtreasure_01_heatmap.webp │ │ │ ├── bp_sandworm_territories_heatmap.webp │ │ │ ├── bp_sandworm_territories_survival_map_heatmap.webp │ │ │ ├── floursand_shapeguide_small.webp │ │ │ ├── spicefield_shapeguide_large.webp │ │ │ ├── spicefield_shapeguide_medium.webp │ │ │ └── spicefield_shapeguide_small.webp │ │ └── version.txt │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ └── patreon │ │ │ │ │ └── redirect │ │ │ │ │ └── route.ts │ │ │ ├── apps │ │ │ │ └── [id] │ │ │ │ │ ├── app-page.tsx │ │ │ │ │ ├── overlay │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── controller │ │ │ │ └── page.tsx │ │ │ ├── dashboard │ │ │ │ ├── games │ │ │ │ │ └── [id] │ │ │ │ │ │ ├── client.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── home-client.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── not-found.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── settings │ │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── layout.tsx │ │ │ ├── not-found.tsx │ │ │ ├── redirect │ │ │ │ └── page.tsx │ │ │ └── robots.txt │ │ ├── lib │ │ │ ├── patreon.ts │ │ │ └── tiers.ts │ │ ├── styles │ │ │ └── globals.css │ │ └── version.ts │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── thgl-web │ ├── .eslintrc.js │ ├── .gitignore │ ├── assets │ │ ├── activity-tracker.xcf │ │ ├── cave.png │ │ ├── cave.xcf │ │ ├── cave128.png │ │ ├── cave_solid.png │ │ ├── hero.xcf │ │ ├── hero_without_text.png │ │ ├── icon.png │ │ ├── logo.png │ │ ├── logo.xcf │ │ ├── logo_white.png │ │ ├── server_background.png │ │ ├── server_background_small.webp │ │ ├── thgl.ico │ │ └── tile.xcf │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── Discord-Symbol-White.svg │ │ ├── activity-tracker.webp │ │ ├── aeternum-map.jpg │ │ ├── aeternum-tracker.jpg │ │ ├── avowed.jpg │ │ ├── cave128.png │ │ ├── diablo4.jpg │ │ ├── diablo4companion.jpg │ │ ├── faq │ │ │ └── wizardcrab-confirmation.png │ │ ├── global_icons │ │ │ ├── aeternum-map.png │ │ │ ├── aeternum-tracker.webp │ │ │ ├── avowed.webp │ │ │ ├── chrono-odyssey.webp │ │ │ ├── d4armory.webp │ │ │ ├── diablo4.webp │ │ │ ├── diablo4companion.webp │ │ │ ├── duetnightabyss.webp │ │ │ ├── dune.webp │ │ │ ├── gameactive.webp │ │ │ ├── games-11174509212269135937.webp │ │ │ ├── games-12013929708799029208.webp │ │ │ ├── games-17114980026651091133.webp │ │ │ ├── games-286748527993956305.webp │ │ │ ├── games-384450802904185754.webp │ │ │ ├── gaming-tools.webp │ │ │ ├── grounded2.webp │ │ │ ├── guide │ │ │ │ └── exit.webp │ │ │ ├── hogwarts-legacy.webp │ │ │ ├── infinity-nikki.webp │ │ │ ├── mmo-wiki.webp │ │ │ ├── night-crows.webp │ │ │ ├── nitrado.webp │ │ │ ├── oblivion-remastered.webp │ │ │ ├── once-human.webp │ │ │ ├── palia-tracker.webp │ │ │ ├── palia.webp │ │ │ ├── palworld.webp │ │ │ ├── partners-11174509212269135937.webp │ │ │ ├── partners-12013929708799029208.webp │ │ │ ├── partners-17114980026651091133.webp │ │ │ ├── partners-286748527993956305.webp │ │ │ ├── partners-384450802904185754.webp │ │ │ ├── pax-dei.webp │ │ │ ├── paxclans.webp │ │ │ ├── paxdei-tools.webp │ │ │ ├── player.png │ │ │ ├── reddit.webp │ │ │ ├── rsdragonwilds.webp │ │ │ ├── satisfactory.webp │ │ │ ├── songs-of-conquest.webp │ │ │ ├── sons-of-the-forest.webp │ │ │ ├── soulframe.webp │ │ │ ├── starresonance.webp │ │ │ ├── stormgate.webp │ │ │ ├── studio-loot.webp │ │ │ ├── thgl.png │ │ │ ├── voicy.webp │ │ │ ├── wiki-gg.webp │ │ │ └── wuthering-waves.webp │ │ ├── hogwarts.jpg │ │ ├── images │ │ │ ├── app-launcher.webp │ │ │ ├── dune-drawing-dialog.webp │ │ │ ├── dune-marker-dialog.webp │ │ │ ├── overlay-dune-awakening.webp │ │ │ ├── overlay-palworld.webp │ │ │ ├── palia-elderwood.webp │ │ │ ├── second-screen.webp │ │ │ ├── soulframe-map-preview.jpg │ │ │ └── thgl-map-experimental.png │ │ ├── infinity-nikki.jpg │ │ ├── newworldcompanion.jpg │ │ ├── night-crows.jpg │ │ ├── nwmap.jpg │ │ ├── once-human.jpg │ │ ├── palia-map.jpg │ │ ├── palia-tracker.jpg │ │ ├── palworld.jpg │ │ ├── partners │ │ │ ├── karolinger.webp │ │ │ └── oehrchen.webp │ │ ├── pax-dei.jpg │ │ ├── satisfactory.jpg │ │ ├── skeleton.jpg │ │ ├── soc.jpg │ │ ├── sotf.jpg │ │ ├── th.jpg │ │ └── wuthering.jpg │ ├── src │ │ ├── app │ │ │ ├── advertise │ │ │ │ └── page.tsx │ │ │ ├── api │ │ │ │ ├── patreon │ │ │ │ │ ├── overwolf │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── redirect │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── shared-filters │ │ │ │ │ └── route.ts │ │ │ │ └── shared-nodes │ │ │ │ │ └── route.ts │ │ │ ├── apps │ │ │ │ ├── [id] │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── release-notes.tsx │ │ │ │ │ └── release-notes │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── client.tsx │ │ │ │ └── page.tsx │ │ │ ├── blog │ │ │ │ ├── [id] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── companion-app │ │ │ │ └── page.tsx │ │ │ ├── error.tsx │ │ │ ├── faq │ │ │ │ ├── [id] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── layout.tsx │ │ │ ├── legal-notice │ │ │ │ └── page.tsx │ │ │ ├── not-found.tsx │ │ │ ├── opengraph-image.alt.txt │ │ │ ├── opengraph-image.png │ │ │ ├── page.tsx │ │ │ ├── partner-program │ │ │ │ ├── page.tsx │ │ │ │ ├── partner-carousel.tsx │ │ │ │ └── partners.ts │ │ │ ├── privacy-policy │ │ │ │ └── page.tsx │ │ │ ├── robots.ts │ │ │ ├── sitemap.ts │ │ │ ├── suggestions-issues │ │ │ │ ├── [id] │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── suggestions-issues.tsx │ │ │ │ └── page.tsx │ │ │ └── support-me │ │ │ │ ├── account │ │ │ │ ├── error.tsx │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── app-subscription-card.tsx │ │ │ ├── benefit-list.tsx │ │ │ ├── blog-list.tsx │ │ │ ├── blog-post-card.tsx │ │ │ ├── comparison-cards.tsx │ │ │ ├── cta-section.tsx │ │ │ ├── faq-item.tsx │ │ │ ├── faq-label-badge.tsx │ │ │ ├── faq-list.tsx │ │ │ ├── feature-card.tsx │ │ │ ├── feature-grid.tsx │ │ │ ├── filter-tabs.tsx │ │ │ ├── footer.tsx │ │ │ ├── game-card.tsx │ │ │ ├── game-grid.tsx │ │ │ ├── games-search-filter.tsx │ │ │ ├── global-search.tsx │ │ │ ├── header.tsx │ │ │ ├── hero-background.tsx │ │ │ ├── hero.tsx │ │ │ ├── image-showcase.tsx │ │ │ ├── info-card.tsx │ │ │ ├── page-header.tsx │ │ │ ├── page-hero.tsx │ │ │ ├── page-shell.tsx │ │ │ ├── partner-card.tsx │ │ │ ├── platform-card.tsx │ │ │ ├── preview-image.tsx │ │ │ ├── section-header.tsx │ │ │ ├── sections │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── sign-out.tsx │ │ │ ├── tier-card.tsx │ │ │ └── view-more-link.tsx │ │ ├── hooks │ │ │ └── use-game-filter.ts │ │ ├── lib │ │ │ ├── blog-entries.ts │ │ │ ├── blog-tag-mapping.ts │ │ │ ├── config.ts │ │ │ ├── faq-entries.ts │ │ │ ├── patreon.ts │ │ │ ├── tiers.ts │ │ │ └── utils.ts │ │ └── styles │ │ │ ├── fonts.ts │ │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── wuthering-waves-overwolf │ ├── .eslintrc.js │ ├── background.html │ ├── icons │ │ ├── icon.png │ │ ├── icon_gray.png │ │ └── launcher_icon.ico │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── plugins │ │ ├── DiscordRPC.dll │ │ ├── DiscordRPCPlugin.dll │ │ ├── GameEventsPlugin.dll │ │ └── Newtonsoft.Json.dll │ ├── postcss.config.mjs │ ├── public │ │ └── favicon.ico │ ├── scripts │ │ ├── copy-overwolf.ts │ │ └── release-overwolf.mjs │ ├── src │ │ ├── background.tsx │ │ ├── config.ts │ │ ├── main.tsx │ │ └── styles │ │ │ └── globals.css │ ├── store │ │ ├── app_icon.png │ │ ├── screenshot1.jpg │ │ ├── screenshot2.jpg │ │ └── screenshot3.jpg │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── turbo.json │ └── vite.config.ts └── wuthering-waves-web │ ├── .eslintrc.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ ├── app │ │ ├── favicon.ico │ │ ├── guides │ │ │ ├── [type] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── maps │ │ │ ├── [map] │ │ │ │ ├── opengraph-image.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── opengraph-image.alt.txt │ │ ├── opengraph-image.jpg │ │ ├── page.tsx │ │ ├── robots.txt │ │ └── sitemap.ts │ ├── config.ts │ └── styles │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── bun.lock ├── bunfig.toml ├── package.json ├── packages ├── config-eslint │ ├── README.md │ ├── index.js │ ├── next.js │ ├── package.json │ └── react.js ├── config-next │ ├── index.js │ └── package.json ├── config-tailwind │ ├── .eslintrc.js │ ├── package.json │ ├── tailwind.config.ts │ └── tsconfig.json ├── config-typescript │ ├── base.json │ ├── bun.json │ ├── nextjs.json │ ├── package.json │ ├── react-app.json │ ├── react-library.json │ └── vite.json ├── jest-presets │ ├── jest │ │ ├── browser │ │ │ └── jest-preset.js │ │ └── node │ │ │ └── jest-preset.js │ └── package.json ├── lib │ ├── .eslintrc.js │ ├── package.json │ ├── src │ │ ├── account.ts │ │ ├── cbor.ts │ │ ├── changelog.ts │ │ ├── config.ts │ │ ├── coordinates.ts │ │ ├── discord.ts │ │ ├── dom.ts │ │ ├── env.ts │ │ ├── files.ts │ │ ├── game.ts │ │ ├── games.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── metadata.ts │ │ ├── overwolf │ │ │ ├── actors-api.ts │ │ │ ├── background.ts │ │ │ ├── brotli.ts │ │ │ ├── discord.ts │ │ │ ├── event-bus.ts │ │ │ ├── game-events.ts │ │ │ ├── games.ts │ │ │ ├── gep.ts │ │ │ ├── hotkeys.ts │ │ │ ├── index.ts │ │ │ ├── manifest.ts │ │ │ ├── plugin.ts │ │ │ ├── promisify.ts │ │ │ ├── state.ts │ │ │ └── windows.ts │ │ ├── search-params.ts │ │ ├── server │ │ │ ├── changelog.ts │ │ │ └── index.ts │ │ ├── settings.ts │ │ ├── shared-nodes.ts │ │ ├── sitemap.ts │ │ ├── tailwind.ts │ │ ├── testimonials.ts │ │ ├── thgl-app │ │ │ ├── apps.ts │ │ │ ├── controller.ts │ │ │ ├── games.ts │ │ │ ├── hotkeys.ts │ │ │ ├── index.ts │ │ │ ├── states.ts │ │ │ ├── utils.ts │ │ │ ├── version.ts │ │ │ └── webview.ts │ │ ├── types.ts │ │ ├── user.ts │ │ └── whiteboard.ts │ ├── tsconfig.json │ ├── tsup.config.ts │ └── turbo.json └── ui │ ├── .eslintrc.js │ ├── components.json │ ├── package.json │ ├── src │ ├── components │ │ ├── (ads) │ │ │ ├── ad-block-message.tsx │ │ │ ├── ad-blocker.tsx │ │ │ ├── ad-free-container.tsx │ │ │ ├── ad-loading-message.tsx │ │ │ ├── ad-placeholder.tsx │ │ │ ├── consent-link.tsx │ │ │ ├── constants.ts │ │ │ ├── content-layout.tsx │ │ │ ├── filter-detection-warning.tsx │ │ │ ├── floating-ads.tsx │ │ │ ├── floating-banner.tsx │ │ │ ├── floating-mobile-banner.tsx │ │ │ ├── index.tsx │ │ │ ├── large-mobile-banner.tsx │ │ │ ├── mobile-banner.tsx │ │ │ ├── movable-ad-free-container.tsx │ │ │ ├── nitro-pay.ts │ │ │ ├── nitro-script.tsx │ │ │ ├── nitropay-video-player.tsx │ │ │ ├── obfuscated-ids.ts │ │ │ ├── thgl-dashboard-ads.tsx │ │ │ ├── thgl-map-ads.tsx │ │ │ └── wide-skyscrapper.tsx │ │ ├── (apps) │ │ │ ├── guide-page.tsx │ │ │ ├── guides-page.tsx │ │ │ ├── home-page.tsx │ │ │ ├── index.tsx │ │ │ ├── json-ld-script.tsx │ │ │ ├── map-page.tsx │ │ │ └── root-layout.tsx │ │ ├── (content) │ │ │ ├── additional-content.tsx │ │ │ ├── additional-tooltip.tsx │ │ │ ├── discord-message.tsx │ │ │ ├── guide.tsx │ │ │ ├── index.tsx │ │ │ ├── nav-card.tsx │ │ │ ├── nav-grid.tsx │ │ │ ├── nav-icon.tsx │ │ │ ├── player-details.tsx │ │ │ ├── preview-image.tsx │ │ │ ├── release-notes.tsx │ │ │ ├── subtitle.tsx │ │ │ └── whats-new.tsx │ │ ├── (controls) │ │ │ ├── actions.tsx │ │ │ ├── collapsible-filter.tsx │ │ │ ├── color-picker.tsx │ │ │ ├── delete-filter.tsx │ │ │ ├── error-boundary.tsx │ │ │ ├── filter-select.tsx │ │ │ ├── filter-tooltip.tsx │ │ │ ├── global-filters.tsx │ │ │ ├── icon-picker.tsx │ │ │ ├── icon-sizes.tsx │ │ │ ├── icons.json │ │ │ ├── index.tsx │ │ │ ├── links.tsx │ │ │ ├── locale-switcher.tsx │ │ │ ├── map-select.tsx │ │ │ ├── markers-filters.tsx │ │ │ ├── markers-search-results.tsx │ │ │ ├── markers-search.tsx │ │ │ ├── my-filters.tsx │ │ │ ├── presets.tsx │ │ │ ├── profile-manager.tsx │ │ │ ├── region-filters.tsx │ │ │ ├── rename-filter.tsx │ │ │ ├── settings-dialog-content.tsx │ │ │ ├── shared-filter.tsx │ │ │ ├── streaming-receiver.tsx │ │ │ ├── toaster.tsx │ │ │ └── whiteboard.tsx │ │ ├── (data) │ │ │ ├── activities.tsx │ │ │ ├── activity-progress.tsx │ │ │ ├── activity-reset.tsx │ │ │ ├── auth-alert.tsx │ │ │ ├── comment.tsx │ │ │ ├── comments.tsx │ │ │ ├── custom-activities.tsx │ │ │ ├── data-table.tsx │ │ │ ├── diablo4-events.tsx │ │ │ ├── diablo4-settings.tsx │ │ │ ├── dune-altitude.tsx │ │ │ ├── dune-deep-desert-grid.tsx │ │ │ ├── dune-heatmaps.tsx │ │ │ ├── index.tsx │ │ │ ├── map-guides.tsx │ │ │ ├── map-progress.tsx │ │ │ ├── node-details.tsx │ │ │ ├── palia-grid-toggle.tsx │ │ │ ├── palia-grid.tsx │ │ │ ├── palia-item-icons.json │ │ │ ├── palia-time.tsx │ │ │ ├── palia-villagers.json │ │ │ ├── palia-weekly-wants.tsx │ │ │ ├── palworld-coordinates.tsx │ │ │ ├── ping.tsx │ │ │ ├── premium-alert.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── simple-map-dynamic.tsx │ │ │ ├── spawns-list.tsx │ │ │ └── troops.tsx │ │ ├── (desktop) │ │ │ ├── index.tsx │ │ │ ├── map-container.tsx │ │ │ ├── qr.tsx │ │ │ └── streaming-sender.tsx │ │ ├── (dynamic) │ │ │ ├── full-map-dynamic.tsx │ │ │ └── full-map.tsx │ │ ├── (header) │ │ │ ├── account.tsx │ │ │ ├── app-download-link.tsx │ │ │ ├── brand.tsx │ │ │ ├── external-anchor.tsx │ │ │ ├── global-menu.json │ │ │ ├── global-menu.tsx │ │ │ ├── header-link.tsx │ │ │ ├── header-offset.tsx │ │ │ ├── header-switch.tsx │ │ │ ├── header.tsx │ │ │ ├── index.tsx │ │ │ ├── interactive-map-link.tsx │ │ │ ├── lock-window-button.tsx │ │ │ ├── nav-menu.tsx │ │ │ ├── page-title.tsx │ │ │ ├── plausible-tracker.tsx │ │ │ ├── release-notes-link.tsx │ │ │ ├── user-dialog.tsx │ │ │ └── user.tsx │ │ ├── (interactive-map) │ │ │ ├── add-shared-filter.tsx │ │ │ ├── canvas-layer.ts │ │ │ ├── canvas-marker.ts │ │ │ ├── color-blind.ts │ │ │ ├── context-menu.tsx │ │ │ ├── coordinates-control.ts │ │ │ ├── discovery.tsx │ │ │ ├── index.tsx │ │ │ ├── interactive-map.tsx │ │ │ ├── live-player.tsx │ │ │ ├── live-teammates.tsx │ │ │ ├── marker-details.tsx │ │ │ ├── marker-tooltip.tsx │ │ │ ├── markers.tsx │ │ │ ├── player-marker.ts │ │ │ ├── player.tsx │ │ │ ├── private-drawing.tsx │ │ │ ├── private-node.tsx │ │ │ ├── regions.tsx │ │ │ ├── rotation.ts │ │ │ ├── share-map-view.tsx │ │ │ ├── simple-map.tsx │ │ │ ├── simple-markers.tsx │ │ │ ├── store.ts │ │ │ ├── teammate.tsx │ │ │ ├── trace-line.tsx │ │ │ ├── upload-filter.tsx │ │ │ └── world.ts │ │ ├── (overwolf) │ │ │ ├── ads-160-600-desktop.tsx │ │ │ ├── ads-300-250-overlay.tsx │ │ │ ├── ads-400-300-overlay.tsx │ │ │ ├── ads-400-600-desktop.tsx │ │ │ ├── ads-400-900-desktop.tsx │ │ │ ├── ads-728-90-desktop.tsx │ │ │ ├── ads-container.tsx │ │ │ ├── ads-fallback.tsx │ │ │ ├── ads-script.tsx │ │ │ ├── ads.ts │ │ │ ├── app-header.tsx │ │ │ ├── app-status.tsx │ │ │ ├── app.tsx │ │ │ ├── channels.tsx │ │ │ ├── hooks.ts │ │ │ ├── hotkey.tsx │ │ │ ├── index.tsx │ │ │ ├── map-hotkeys.tsx │ │ │ ├── resize-borders.tsx │ │ │ ├── send-logs.tsx │ │ │ ├── settings-dialog-content.tsx │ │ │ ├── status.tsx │ │ │ └── unlock-button.tsx │ │ ├── (peer) │ │ │ └── index.tsx │ │ ├── (providers) │ │ │ ├── activities-provider.tsx │ │ │ ├── coordinates-provider.tsx │ │ │ ├── database-provider.tsx │ │ │ ├── i18n-provider.tsx │ │ │ ├── index.tsx │ │ │ ├── peer-mesh-utils.ts │ │ │ └── peers-store.ts │ │ ├── (thgl-app) │ │ │ ├── account-dialog.tsx │ │ │ ├── actor-type-filter.tsx │ │ │ ├── app-card.tsx │ │ │ ├── app-header.tsx │ │ │ ├── app-map-dynamic.tsx │ │ │ ├── app-map.tsx │ │ │ ├── app-version.tsx │ │ │ ├── app.tsx │ │ │ ├── auth-redirect.tsx │ │ │ ├── dashboard-sidebar.tsx │ │ │ ├── hotkey.tsx │ │ │ ├── index.tsx │ │ │ ├── initialize-account.tsx │ │ │ ├── initialize-app.tsx │ │ │ ├── initialize-controller.tsx │ │ │ ├── map-hotkeys.tsx │ │ │ ├── navigation-buttons.tsx │ │ │ ├── overlay-input-events.tsx │ │ │ ├── resize-borders.tsx │ │ │ ├── settings-dialog-content.tsx │ │ │ ├── sidebar-nav.tsx │ │ │ ├── status.tsx │ │ │ └── unlock-button.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle.tsx │ │ │ ├── tooltip.tsx │ │ │ ├── useThrottleEffect.ts │ │ │ └── useThrottledMemo.ts │ ├── dicts │ │ ├── de.json │ │ ├── dune-awakening.de.json │ │ ├── dune-awakening.en.json │ │ ├── dune-awakening.es.json │ │ ├── dune-awakening.fr.json │ │ ├── dune-awakening.it.json │ │ ├── dune-awakening.ja.json │ │ ├── dune-awakening.ko.json │ │ ├── dune-awakening.pl.json │ │ ├── dune-awakening.pt-BR.json │ │ ├── dune-awakening.ru.json │ │ ├── dune-awakening.tr.json │ │ ├── dune-awakening.uk.json │ │ ├── dune-awakening.zh-CN.json │ │ ├── dune-awakening.zh-TW.json │ │ ├── en.json │ │ ├── es-MX.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── index.ts │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ ├── ru.json │ │ ├── tr.json │ │ ├── uk.json │ │ ├── zh-CN.json │ │ └── zh-TW.json │ └── styles │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── turbo.json ├── tests └── peer-mesh-sim │ ├── README.md │ └── sim.html └── turbo.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/avowed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/avowed.yml -------------------------------------------------------------------------------- /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/diablo4-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/diablo4-preview.yml -------------------------------------------------------------------------------- /.github/workflows/diablo4-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/diablo4-production.yml -------------------------------------------------------------------------------- /.github/workflows/hogwarts-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/hogwarts-preview.yml -------------------------------------------------------------------------------- /.github/workflows/hogwarts-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/hogwarts-production.yml -------------------------------------------------------------------------------- /.github/workflows/once-human-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/once-human-preview.yml -------------------------------------------------------------------------------- /.github/workflows/once-human-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/once-human-production.yml -------------------------------------------------------------------------------- /.github/workflows/palia-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/palia-preview.yml -------------------------------------------------------------------------------- /.github/workflows/palworld-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/palworld-preview.yml -------------------------------------------------------------------------------- /.github/workflows/palworld-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/palworld-production.yml -------------------------------------------------------------------------------- /.github/workflows/pax-dei-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/pax-dei-preview.yml -------------------------------------------------------------------------------- /.github/workflows/pax-dei-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/pax-dei-production.yml -------------------------------------------------------------------------------- /.github/workflows/satisfactory-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/satisfactory-preview.yml -------------------------------------------------------------------------------- /.github/workflows/wuthering-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/wuthering-preview.yml -------------------------------------------------------------------------------- /.github/workflows/wuthering-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.github/workflows/wuthering-production.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- 1 | .claude 2 | .github 3 | .vscode 4 | apps/*-overwolf 5 | tests -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/GUIDELINES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/README.md -------------------------------------------------------------------------------- /apps/avowed-overwolf/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/.eslintrc.js -------------------------------------------------------------------------------- /apps/avowed-overwolf/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/background.html -------------------------------------------------------------------------------- /apps/avowed-overwolf/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/icons/icon.png -------------------------------------------------------------------------------- /apps/avowed-overwolf/icons/icon_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/icons/icon_gray.png -------------------------------------------------------------------------------- /apps/avowed-overwolf/icons/launcher_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/icons/launcher_icon.ico -------------------------------------------------------------------------------- /apps/avowed-overwolf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/index.html -------------------------------------------------------------------------------- /apps/avowed-overwolf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/manifest.json -------------------------------------------------------------------------------- /apps/avowed-overwolf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/package.json -------------------------------------------------------------------------------- /apps/avowed-overwolf/plugins/DiscordRPC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/plugins/DiscordRPC.dll -------------------------------------------------------------------------------- /apps/avowed-overwolf/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/postcss.config.mjs -------------------------------------------------------------------------------- /apps/avowed-overwolf/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/public/favicon.ico -------------------------------------------------------------------------------- /apps/avowed-overwolf/scripts/copy-overwolf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/scripts/copy-overwolf.ts -------------------------------------------------------------------------------- /apps/avowed-overwolf/src/background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/src/background.tsx -------------------------------------------------------------------------------- /apps/avowed-overwolf/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/src/config.ts -------------------------------------------------------------------------------- /apps/avowed-overwolf/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/src/main.tsx -------------------------------------------------------------------------------- /apps/avowed-overwolf/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/src/styles/globals.css -------------------------------------------------------------------------------- /apps/avowed-overwolf/store/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/store/app_icon.png -------------------------------------------------------------------------------- /apps/avowed-overwolf/store/screenshot1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/store/screenshot1.webp -------------------------------------------------------------------------------- /apps/avowed-overwolf/store/screenshot2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/store/screenshot2.webp -------------------------------------------------------------------------------- /apps/avowed-overwolf/store/screenshot3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/store/screenshot3.webp -------------------------------------------------------------------------------- /apps/avowed-overwolf/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/tailwind.config.js -------------------------------------------------------------------------------- /apps/avowed-overwolf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/tsconfig.json -------------------------------------------------------------------------------- /apps/avowed-overwolf/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/turbo.json -------------------------------------------------------------------------------- /apps/avowed-overwolf/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-overwolf/vite.config.ts -------------------------------------------------------------------------------- /apps/avowed-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/avowed-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/avowed-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/next.config.js -------------------------------------------------------------------------------- /apps/avowed-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/package.json -------------------------------------------------------------------------------- /apps/avowed-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/postcss.config.js -------------------------------------------------------------------------------- /apps/avowed-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/avowed-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/avowed-web/src/app/maps/[map]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/src/app/maps/[map]/page.tsx -------------------------------------------------------------------------------- /apps/avowed-web/src/app/maps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/src/app/maps/page.tsx -------------------------------------------------------------------------------- /apps/avowed-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Avowed Interactive Map -------------------------------------------------------------------------------- /apps/avowed-web/src/app/opengraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/src/app/opengraph-image.jpg -------------------------------------------------------------------------------- /apps/avowed-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/avowed-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/avowed-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/avowed-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/src/config.ts -------------------------------------------------------------------------------- /apps/avowed-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/avowed-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/avowed-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/tsconfig.json -------------------------------------------------------------------------------- /apps/avowed-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/avowed-web/turbo.json -------------------------------------------------------------------------------- /apps/blue-protocol-star-resonance-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Blue Protocol Star Resonance Interactive Map -------------------------------------------------------------------------------- /apps/blue-protocol-star-resonance-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/next.config.js -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/package.json -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/postcss.config.js -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/src/app/maps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/src/app/maps/page.tsx -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Chrono Odyssey Interactive Map -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/src/config.ts -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/tsconfig.json -------------------------------------------------------------------------------- /apps/chrono-odyssey-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/chrono-odyssey-web/turbo.json -------------------------------------------------------------------------------- /apps/diablo4-overwolf/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/.eslintrc.js -------------------------------------------------------------------------------- /apps/diablo4-overwolf/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/background.html -------------------------------------------------------------------------------- /apps/diablo4-overwolf/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/icons/icon.png -------------------------------------------------------------------------------- /apps/diablo4-overwolf/icons/icon_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/icons/icon_gray.png -------------------------------------------------------------------------------- /apps/diablo4-overwolf/icons/launcher_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/icons/launcher_icon.ico -------------------------------------------------------------------------------- /apps/diablo4-overwolf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/index.html -------------------------------------------------------------------------------- /apps/diablo4-overwolf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/manifest.json -------------------------------------------------------------------------------- /apps/diablo4-overwolf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/package.json -------------------------------------------------------------------------------- /apps/diablo4-overwolf/plugins/DiscordRPC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/plugins/DiscordRPC.dll -------------------------------------------------------------------------------- /apps/diablo4-overwolf/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/postcss.config.mjs -------------------------------------------------------------------------------- /apps/diablo4-overwolf/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/public/favicon.ico -------------------------------------------------------------------------------- /apps/diablo4-overwolf/src/background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/src/background.tsx -------------------------------------------------------------------------------- /apps/diablo4-overwolf/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/src/config.ts -------------------------------------------------------------------------------- /apps/diablo4-overwolf/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/src/main.tsx -------------------------------------------------------------------------------- /apps/diablo4-overwolf/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/src/styles/globals.css -------------------------------------------------------------------------------- /apps/diablo4-overwolf/store/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/store/app_icon.png -------------------------------------------------------------------------------- /apps/diablo4-overwolf/store/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/store/screenshot1.jpg -------------------------------------------------------------------------------- /apps/diablo4-overwolf/store/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/store/screenshot2.jpg -------------------------------------------------------------------------------- /apps/diablo4-overwolf/store/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/store/screenshot3.jpg -------------------------------------------------------------------------------- /apps/diablo4-overwolf/store/screenshot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/store/screenshot4.jpg -------------------------------------------------------------------------------- /apps/diablo4-overwolf/store/tile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/store/tile.jpg -------------------------------------------------------------------------------- /apps/diablo4-overwolf/store/tile.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/store/tile.xcf -------------------------------------------------------------------------------- /apps/diablo4-overwolf/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/tailwind.config.js -------------------------------------------------------------------------------- /apps/diablo4-overwolf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/tsconfig.json -------------------------------------------------------------------------------- /apps/diablo4-overwolf/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/turbo.json -------------------------------------------------------------------------------- /apps/diablo4-overwolf/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-overwolf/vite.config.ts -------------------------------------------------------------------------------- /apps/diablo4-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/diablo4-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/diablo4-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/next.config.js -------------------------------------------------------------------------------- /apps/diablo4-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/package.json -------------------------------------------------------------------------------- /apps/diablo4-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/postcss.config.js -------------------------------------------------------------------------------- /apps/diablo4-web/src/app/(root)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/src/app/(root)/layout.tsx -------------------------------------------------------------------------------- /apps/diablo4-web/src/app/(root)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/src/app/(root)/page.tsx -------------------------------------------------------------------------------- /apps/diablo4-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/diablo4-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Diablo IV Interactive Map -------------------------------------------------------------------------------- /apps/diablo4-web/src/app/opengraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/src/app/opengraph-image.jpg -------------------------------------------------------------------------------- /apps/diablo4-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/diablo4-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/src/config.ts -------------------------------------------------------------------------------- /apps/diablo4-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/diablo4-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/diablo4-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/tsconfig.json -------------------------------------------------------------------------------- /apps/diablo4-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/diablo4-web/turbo.json -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/duet-night-abyss-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/duet-night-abyss-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/duet-night-abyss-web/next.config.js -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/duet-night-abyss-web/package.json -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/duet-night-abyss-web/postcss.config.js -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/duet-night-abyss-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Duet Night Abyss Interactive Map -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/duet-night-abyss-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/duet-night-abyss-web/src/config.ts -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/duet-night-abyss-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/duet-night-abyss-web/tsconfig.json -------------------------------------------------------------------------------- /apps/duet-night-abyss-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/duet-night-abyss-web/turbo.json -------------------------------------------------------------------------------- /apps/dune-awakening-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/dune-awakening-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/dune-awakening-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/next.config.js -------------------------------------------------------------------------------- /apps/dune-awakening-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/package.json -------------------------------------------------------------------------------- /apps/dune-awakening-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/postcss.config.js -------------------------------------------------------------------------------- /apps/dune-awakening-web/public/discount.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/public/discount.webp -------------------------------------------------------------------------------- /apps/dune-awakening-web/src/app/(en)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/src/app/(en)/page.tsx -------------------------------------------------------------------------------- /apps/dune-awakening-web/src/app/(en)/private-servers/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Dune Awakening Private Servers -------------------------------------------------------------------------------- /apps/dune-awakening-web/src/app/[locale]/private-servers/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Dune Awakening Private Servers -------------------------------------------------------------------------------- /apps/dune-awakening-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/dune-awakening-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Dune Awakening Interactive Map -------------------------------------------------------------------------------- /apps/dune-awakening-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/dune-awakening-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/dune-awakening-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/src/config.ts -------------------------------------------------------------------------------- /apps/dune-awakening-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/dune-awakening-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/tsconfig.json -------------------------------------------------------------------------------- /apps/dune-awakening-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/dune-awakening-web/turbo.json -------------------------------------------------------------------------------- /apps/grounded2-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/grounded2-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/grounded2-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/next.config.js -------------------------------------------------------------------------------- /apps/grounded2-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/package.json -------------------------------------------------------------------------------- /apps/grounded2-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/postcss.config.js -------------------------------------------------------------------------------- /apps/grounded2-web/src/app/(en)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/src/app/(en)/layout.tsx -------------------------------------------------------------------------------- /apps/grounded2-web/src/app/(en)/maps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/src/app/(en)/maps/page.tsx -------------------------------------------------------------------------------- /apps/grounded2-web/src/app/(en)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/src/app/(en)/page.tsx -------------------------------------------------------------------------------- /apps/grounded2-web/src/app/[locale]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/src/app/[locale]/page.tsx -------------------------------------------------------------------------------- /apps/grounded2-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/grounded2-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Soulframe Interactive Map -------------------------------------------------------------------------------- /apps/grounded2-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/grounded2-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/grounded2-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/src/config.ts -------------------------------------------------------------------------------- /apps/grounded2-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/grounded2-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/grounded2-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/tsconfig.json -------------------------------------------------------------------------------- /apps/grounded2-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/grounded2-web/turbo.json -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/.eslintrc.js -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/background.html -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/icons/icon.png -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/index.html -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/manifest.json -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/package.json -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/src/config.ts -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/src/main.tsx -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/store/tile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/store/tile.jpg -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/store/tile.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/store/tile.xcf -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/tsconfig.json -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/turbo.json -------------------------------------------------------------------------------- /apps/hogwarts-legacy-overwolf/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-overwolf/vite.config.ts -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/next.config.js -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/package.json -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/postcss.config.js -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Hogwarts Legacy Interactive Map -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/src/config.ts -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/tsconfig.json -------------------------------------------------------------------------------- /apps/hogwarts-legacy-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/hogwarts-legacy-web/turbo.json -------------------------------------------------------------------------------- /apps/infinity-nikki-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/infinity-nikki-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/infinity-nikki-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/next.config.js -------------------------------------------------------------------------------- /apps/infinity-nikki-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/package.json -------------------------------------------------------------------------------- /apps/infinity-nikki-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/postcss.config.js -------------------------------------------------------------------------------- /apps/infinity-nikki-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/infinity-nikki-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/infinity-nikki-web/src/app/maps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/src/app/maps/page.tsx -------------------------------------------------------------------------------- /apps/infinity-nikki-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Infinity Nikki Interactive Map -------------------------------------------------------------------------------- /apps/infinity-nikki-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/infinity-nikki-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/infinity-nikki-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/infinity-nikki-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/src/config.ts -------------------------------------------------------------------------------- /apps/infinity-nikki-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/infinity-nikki-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/tsconfig.json -------------------------------------------------------------------------------- /apps/infinity-nikki-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/infinity-nikki-web/turbo.json -------------------------------------------------------------------------------- /apps/night-crows-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/night-crows-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/night-crows-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/next.config.js -------------------------------------------------------------------------------- /apps/night-crows-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/package.json -------------------------------------------------------------------------------- /apps/night-crows-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/postcss.config.js -------------------------------------------------------------------------------- /apps/night-crows-web/src/app/activities-tracker/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Night Crows Activities Tracker -------------------------------------------------------------------------------- /apps/night-crows-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/night-crows-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/night-crows-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Night Crows Interactive Map -------------------------------------------------------------------------------- /apps/night-crows-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/night-crows-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/night-crows-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/src/config.ts -------------------------------------------------------------------------------- /apps/night-crows-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/night-crows-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/night-crows-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/tsconfig.json -------------------------------------------------------------------------------- /apps/night-crows-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/night-crows-web/turbo.json -------------------------------------------------------------------------------- /apps/once-human-overwolf/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/.eslintrc.js -------------------------------------------------------------------------------- /apps/once-human-overwolf/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/background.html -------------------------------------------------------------------------------- /apps/once-human-overwolf/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/icons/icon.png -------------------------------------------------------------------------------- /apps/once-human-overwolf/icons/icon_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/icons/icon_gray.png -------------------------------------------------------------------------------- /apps/once-human-overwolf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/index.html -------------------------------------------------------------------------------- /apps/once-human-overwolf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/manifest.json -------------------------------------------------------------------------------- /apps/once-human-overwolf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/package.json -------------------------------------------------------------------------------- /apps/once-human-overwolf/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/postcss.config.mjs -------------------------------------------------------------------------------- /apps/once-human-overwolf/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/public/favicon.ico -------------------------------------------------------------------------------- /apps/once-human-overwolf/src/background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/src/background.tsx -------------------------------------------------------------------------------- /apps/once-human-overwolf/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/src/config.ts -------------------------------------------------------------------------------- /apps/once-human-overwolf/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/src/main.tsx -------------------------------------------------------------------------------- /apps/once-human-overwolf/store/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/store/app_icon.png -------------------------------------------------------------------------------- /apps/once-human-overwolf/store/tile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/store/tile.jpg -------------------------------------------------------------------------------- /apps/once-human-overwolf/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/tailwind.config.js -------------------------------------------------------------------------------- /apps/once-human-overwolf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/tsconfig.json -------------------------------------------------------------------------------- /apps/once-human-overwolf/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/turbo.json -------------------------------------------------------------------------------- /apps/once-human-overwolf/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-overwolf/vite.config.ts -------------------------------------------------------------------------------- /apps/once-human-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/once-human-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/once-human-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/next.config.js -------------------------------------------------------------------------------- /apps/once-human-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/package.json -------------------------------------------------------------------------------- /apps/once-human-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/postcss.config.js -------------------------------------------------------------------------------- /apps/once-human-web/src/app/deviant-locations/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Once Human Deviant Locations -------------------------------------------------------------------------------- /apps/once-human-web/src/app/echoes-of-stardust/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Once Human Remnants -------------------------------------------------------------------------------- /apps/once-human-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/once-human-web/src/app/guides/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/src/app/guides/page.tsx -------------------------------------------------------------------------------- /apps/once-human-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/once-human-web/src/app/maps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/src/app/maps/page.tsx -------------------------------------------------------------------------------- /apps/once-human-web/src/app/mod-locations/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Once Human Mod Locations -------------------------------------------------------------------------------- /apps/once-human-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Once Human Interactive Map -------------------------------------------------------------------------------- /apps/once-human-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/once-human-web/src/app/regional-records/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Once Human Remnants -------------------------------------------------------------------------------- /apps/once-human-web/src/app/remnants/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Once Human Remnants -------------------------------------------------------------------------------- /apps/once-human-web/src/app/remnants/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/src/app/remnants/page.tsx -------------------------------------------------------------------------------- /apps/once-human-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/once-human-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/once-human-web/src/app/weapons/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Once Human Weapons -------------------------------------------------------------------------------- /apps/once-human-web/src/app/weapons/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/src/app/weapons/page.tsx -------------------------------------------------------------------------------- /apps/once-human-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/src/config.ts -------------------------------------------------------------------------------- /apps/once-human-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/once-human-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/once-human-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/tsconfig.json -------------------------------------------------------------------------------- /apps/once-human-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/once-human-web/turbo.json -------------------------------------------------------------------------------- /apps/palia-overwolf/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/.eslintrc.js -------------------------------------------------------------------------------- /apps/palia-overwolf/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/background.html -------------------------------------------------------------------------------- /apps/palia-overwolf/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/icons/icon.png -------------------------------------------------------------------------------- /apps/palia-overwolf/icons/icon_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/icons/icon_gray.png -------------------------------------------------------------------------------- /apps/palia-overwolf/icons/launcher_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/icons/launcher_icon.ico -------------------------------------------------------------------------------- /apps/palia-overwolf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/index.html -------------------------------------------------------------------------------- /apps/palia-overwolf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/manifest.json -------------------------------------------------------------------------------- /apps/palia-overwolf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/package.json -------------------------------------------------------------------------------- /apps/palia-overwolf/plugins/DiscordRPC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/plugins/DiscordRPC.dll -------------------------------------------------------------------------------- /apps/palia-overwolf/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/postcss.config.mjs -------------------------------------------------------------------------------- /apps/palia-overwolf/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/public/favicon.ico -------------------------------------------------------------------------------- /apps/palia-overwolf/scripts/copy-overwolf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/scripts/copy-overwolf.ts -------------------------------------------------------------------------------- /apps/palia-overwolf/src/background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/src/background.tsx -------------------------------------------------------------------------------- /apps/palia-overwolf/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/src/config.ts -------------------------------------------------------------------------------- /apps/palia-overwolf/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/src/main.tsx -------------------------------------------------------------------------------- /apps/palia-overwolf/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/src/styles/globals.css -------------------------------------------------------------------------------- /apps/palia-overwolf/store/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/store/app_icon.png -------------------------------------------------------------------------------- /apps/palia-overwolf/store/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/store/screenshot1.jpg -------------------------------------------------------------------------------- /apps/palia-overwolf/store/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/store/screenshot2.jpg -------------------------------------------------------------------------------- /apps/palia-overwolf/store/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/store/screenshot3.jpg -------------------------------------------------------------------------------- /apps/palia-overwolf/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/tailwind.config.js -------------------------------------------------------------------------------- /apps/palia-overwolf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/tsconfig.json -------------------------------------------------------------------------------- /apps/palia-overwolf/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/turbo.json -------------------------------------------------------------------------------- /apps/palia-overwolf/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-overwolf/vite.config.ts -------------------------------------------------------------------------------- /apps/palia-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/palia-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/palia-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/next.config.js -------------------------------------------------------------------------------- /apps/palia-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/package.json -------------------------------------------------------------------------------- /apps/palia-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/postcss.config.js -------------------------------------------------------------------------------- /apps/palia-web/public/leaderboard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/public/leaderboard.webp -------------------------------------------------------------------------------- /apps/palia-web/public/rummage-pile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/public/rummage-pile.webp -------------------------------------------------------------------------------- /apps/palia-web/public/weekly-wants.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/public/weekly-wants.webp -------------------------------------------------------------------------------- /apps/palia-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/palia-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/palia-web/src/app/leaderboard/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Palia App Leaderboard -------------------------------------------------------------------------------- /apps/palia-web/src/app/leaderboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/app/leaderboard/page.tsx -------------------------------------------------------------------------------- /apps/palia-web/src/app/maps/[map]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/app/maps/[map]/page.tsx -------------------------------------------------------------------------------- /apps/palia-web/src/app/maps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/app/maps/page.tsx -------------------------------------------------------------------------------- /apps/palia-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Palia Interactive Map -------------------------------------------------------------------------------- /apps/palia-web/src/app/opengraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/app/opengraph-image.jpg -------------------------------------------------------------------------------- /apps/palia-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/palia-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/palia-web/src/app/rummage-pile/map.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/app/rummage-pile/map.webp -------------------------------------------------------------------------------- /apps/palia-web/src/app/rummage-pile/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Palia Rummage Pile -------------------------------------------------------------------------------- /apps/palia-web/src/app/rummage-pile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/app/rummage-pile/page.tsx -------------------------------------------------------------------------------- /apps/palia-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/palia-web/src/app/weekly-wants/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Palia Weekly Wants -------------------------------------------------------------------------------- /apps/palia-web/src/app/weekly-wants/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/app/weekly-wants/page.tsx -------------------------------------------------------------------------------- /apps/palia-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/config.ts -------------------------------------------------------------------------------- /apps/palia-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/palia-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/palia-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/tsconfig.json -------------------------------------------------------------------------------- /apps/palia-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palia-web/turbo.json -------------------------------------------------------------------------------- /apps/palworld-overwolf/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/.eslintrc.js -------------------------------------------------------------------------------- /apps/palworld-overwolf/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/background.html -------------------------------------------------------------------------------- /apps/palworld-overwolf/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/icons/icon.png -------------------------------------------------------------------------------- /apps/palworld-overwolf/icons/icon_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/icons/icon_gray.png -------------------------------------------------------------------------------- /apps/palworld-overwolf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/index.html -------------------------------------------------------------------------------- /apps/palworld-overwolf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/manifest.json -------------------------------------------------------------------------------- /apps/palworld-overwolf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/package.json -------------------------------------------------------------------------------- /apps/palworld-overwolf/plugins/DiscordRPC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/plugins/DiscordRPC.dll -------------------------------------------------------------------------------- /apps/palworld-overwolf/plugins/Palworld.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/plugins/Palworld.dll -------------------------------------------------------------------------------- /apps/palworld-overwolf/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/postcss.config.mjs -------------------------------------------------------------------------------- /apps/palworld-overwolf/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/public/favicon.ico -------------------------------------------------------------------------------- /apps/palworld-overwolf/src/background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/src/background.tsx -------------------------------------------------------------------------------- /apps/palworld-overwolf/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/src/config.ts -------------------------------------------------------------------------------- /apps/palworld-overwolf/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/src/main.tsx -------------------------------------------------------------------------------- /apps/palworld-overwolf/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/src/styles/globals.css -------------------------------------------------------------------------------- /apps/palworld-overwolf/store/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/store/app_icon.png -------------------------------------------------------------------------------- /apps/palworld-overwolf/store/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/store/screenshot1.jpg -------------------------------------------------------------------------------- /apps/palworld-overwolf/store/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/store/screenshot2.jpg -------------------------------------------------------------------------------- /apps/palworld-overwolf/store/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/store/screenshot3.jpg -------------------------------------------------------------------------------- /apps/palworld-overwolf/store/tile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/store/tile.jpg -------------------------------------------------------------------------------- /apps/palworld-overwolf/store/tile.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/store/tile.xcf -------------------------------------------------------------------------------- /apps/palworld-overwolf/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/tailwind.config.js -------------------------------------------------------------------------------- /apps/palworld-overwolf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/tsconfig.json -------------------------------------------------------------------------------- /apps/palworld-overwolf/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/turbo.json -------------------------------------------------------------------------------- /apps/palworld-overwolf/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-overwolf/vite.config.ts -------------------------------------------------------------------------------- /apps/palworld-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/palworld-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/palworld-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/next.config.js -------------------------------------------------------------------------------- /apps/palworld-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/package.json -------------------------------------------------------------------------------- /apps/palworld-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/postcss.config.js -------------------------------------------------------------------------------- /apps/palworld-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/palworld-web/src/app/guides/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/src/app/guides/page.tsx -------------------------------------------------------------------------------- /apps/palworld-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/palworld-web/src/app/maps/[map]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/src/app/maps/[map]/page.tsx -------------------------------------------------------------------------------- /apps/palworld-web/src/app/maps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/src/app/maps/page.tsx -------------------------------------------------------------------------------- /apps/palworld-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Palworld Interactive Map -------------------------------------------------------------------------------- /apps/palworld-web/src/app/opengraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/src/app/opengraph-image.jpg -------------------------------------------------------------------------------- /apps/palworld-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/palworld-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/palworld-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/palworld-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/src/config.ts -------------------------------------------------------------------------------- /apps/palworld-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/palworld-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/palworld-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/tsconfig.json -------------------------------------------------------------------------------- /apps/palworld-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/palworld-web/turbo.json -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/.eslintrc.js -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/background.html -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/icons/icon.png -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/icons/icon_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/icons/icon_gray.png -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/icons/launcher_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/icons/launcher_icon.ico -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/index.html -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/manifest.json -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/package.json -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/plugins/DiscordRPC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/plugins/DiscordRPC.dll -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/postcss.config.mjs -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/public/favicon.ico -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/src/background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/src/background.tsx -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/src/config.ts -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/src/main.tsx -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/src/styles/globals.css -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/store/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/store/app_icon.png -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/store/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/store/screenshot1.jpg -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/store/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/store/screenshot2.jpg -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/store/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/store/screenshot3.jpg -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/tailwind.config.js -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/tsconfig.json -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/turbo.json -------------------------------------------------------------------------------- /apps/pax-dei-overwolf/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-overwolf/vite.config.ts -------------------------------------------------------------------------------- /apps/pax-dei-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/pax-dei-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/pax-dei-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/next.config.js -------------------------------------------------------------------------------- /apps/pax-dei-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/package.json -------------------------------------------------------------------------------- /apps/pax-dei-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/postcss.config.js -------------------------------------------------------------------------------- /apps/pax-dei-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/pax-dei-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/pax-dei-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Pax Dei Interactive Map -------------------------------------------------------------------------------- /apps/pax-dei-web/src/app/opengraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/src/app/opengraph-image.jpg -------------------------------------------------------------------------------- /apps/pax-dei-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/pax-dei-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/pax-dei-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/src/config.ts -------------------------------------------------------------------------------- /apps/pax-dei-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/pax-dei-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/pax-dei-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/tsconfig.json -------------------------------------------------------------------------------- /apps/pax-dei-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/pax-dei-web/turbo.json -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/next.config.js -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/package.json -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/postcss.config.js -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/src/app/maps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/src/app/maps/page.tsx -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | RuneScape: Dragonwilds Interactive Map -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/src/config.ts -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/tsconfig.json -------------------------------------------------------------------------------- /apps/rsdragonwilds-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/rsdragonwilds-web/turbo.json -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/.eslintrc.js -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/background.html -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/icons/icon.png -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/index.html -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/manifest.json -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/package.json -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/postcss.config.mjs -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/public/favicon.ico -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/src/background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/src/background.tsx -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/src/config.ts -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/src/main.tsx -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/store/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/store/app_icon.png -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/tailwind.config.js -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/tsconfig.json -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/turbo.json -------------------------------------------------------------------------------- /apps/satisfactory-overwolf/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-overwolf/vite.config.ts -------------------------------------------------------------------------------- /apps/satisfactory-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/satisfactory-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/satisfactory-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/next.config.js -------------------------------------------------------------------------------- /apps/satisfactory-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/package.json -------------------------------------------------------------------------------- /apps/satisfactory-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/postcss.config.js -------------------------------------------------------------------------------- /apps/satisfactory-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/satisfactory-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/satisfactory-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Satisfactory Interactive Map -------------------------------------------------------------------------------- /apps/satisfactory-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/satisfactory-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/satisfactory-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/src/config.ts -------------------------------------------------------------------------------- /apps/satisfactory-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/satisfactory-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/satisfactory-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/tsconfig.json -------------------------------------------------------------------------------- /apps/satisfactory-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/satisfactory-web/turbo.json -------------------------------------------------------------------------------- /apps/soulframe-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/soulframe-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/soulframe-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/next.config.js -------------------------------------------------------------------------------- /apps/soulframe-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/package.json -------------------------------------------------------------------------------- /apps/soulframe-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/postcss.config.js -------------------------------------------------------------------------------- /apps/soulframe-web/public/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/public/screenshot.jpg -------------------------------------------------------------------------------- /apps/soulframe-web/src/app/(en)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/src/app/(en)/layout.tsx -------------------------------------------------------------------------------- /apps/soulframe-web/src/app/(en)/maps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/src/app/(en)/maps/page.tsx -------------------------------------------------------------------------------- /apps/soulframe-web/src/app/(en)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/src/app/(en)/page.tsx -------------------------------------------------------------------------------- /apps/soulframe-web/src/app/[locale]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/src/app/[locale]/page.tsx -------------------------------------------------------------------------------- /apps/soulframe-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/soulframe-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Soulframe Interactive Map -------------------------------------------------------------------------------- /apps/soulframe-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/soulframe-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/soulframe-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/src/config.ts -------------------------------------------------------------------------------- /apps/soulframe-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/soulframe-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/soulframe-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/tsconfig.json -------------------------------------------------------------------------------- /apps/soulframe-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/soulframe-web/turbo.json -------------------------------------------------------------------------------- /apps/thgl-app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/.eslintrc.js -------------------------------------------------------------------------------- /apps/thgl-app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/next-env.d.ts -------------------------------------------------------------------------------- /apps/thgl-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/next.config.js -------------------------------------------------------------------------------- /apps/thgl-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/package.json -------------------------------------------------------------------------------- /apps/thgl-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/postcss.config.js -------------------------------------------------------------------------------- /apps/thgl-app/public/THGL_Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/public/THGL_Installer.exe -------------------------------------------------------------------------------- /apps/thgl-app/public/cave128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/public/cave128.png -------------------------------------------------------------------------------- /apps/thgl-app/public/version.txt: -------------------------------------------------------------------------------- 1 | 3.1.0 2 | -------------------------------------------------------------------------------- /apps/thgl-app/src/app/apps/[id]/app-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/app/apps/[id]/app-page.tsx -------------------------------------------------------------------------------- /apps/thgl-app/src/app/apps/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/app/apps/[id]/page.tsx -------------------------------------------------------------------------------- /apps/thgl-app/src/app/controller/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/app/controller/page.tsx -------------------------------------------------------------------------------- /apps/thgl-app/src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /apps/thgl-app/src/app/dashboard/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/app/dashboard/not-found.tsx -------------------------------------------------------------------------------- /apps/thgl-app/src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /apps/thgl-app/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/thgl-app/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/thgl-app/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/app/not-found.tsx -------------------------------------------------------------------------------- /apps/thgl-app/src/app/redirect/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/app/redirect/page.tsx -------------------------------------------------------------------------------- /apps/thgl-app/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /apps/thgl-app/src/lib/patreon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/lib/patreon.ts -------------------------------------------------------------------------------- /apps/thgl-app/src/lib/tiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/lib/tiers.ts -------------------------------------------------------------------------------- /apps/thgl-app/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/styles/globals.css -------------------------------------------------------------------------------- /apps/thgl-app/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/src/version.ts -------------------------------------------------------------------------------- /apps/thgl-app/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/tailwind.config.ts -------------------------------------------------------------------------------- /apps/thgl-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/tsconfig.json -------------------------------------------------------------------------------- /apps/thgl-app/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-app/turbo.json -------------------------------------------------------------------------------- /apps/thgl-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/thgl-web/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /apps/thgl-web/assets/activity-tracker.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/activity-tracker.xcf -------------------------------------------------------------------------------- /apps/thgl-web/assets/cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/cave.png -------------------------------------------------------------------------------- /apps/thgl-web/assets/cave.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/cave.xcf -------------------------------------------------------------------------------- /apps/thgl-web/assets/cave128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/cave128.png -------------------------------------------------------------------------------- /apps/thgl-web/assets/cave_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/cave_solid.png -------------------------------------------------------------------------------- /apps/thgl-web/assets/hero.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/hero.xcf -------------------------------------------------------------------------------- /apps/thgl-web/assets/hero_without_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/hero_without_text.png -------------------------------------------------------------------------------- /apps/thgl-web/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/icon.png -------------------------------------------------------------------------------- /apps/thgl-web/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/logo.png -------------------------------------------------------------------------------- /apps/thgl-web/assets/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/logo.xcf -------------------------------------------------------------------------------- /apps/thgl-web/assets/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/logo_white.png -------------------------------------------------------------------------------- /apps/thgl-web/assets/server_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/server_background.png -------------------------------------------------------------------------------- /apps/thgl-web/assets/thgl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/thgl.ico -------------------------------------------------------------------------------- /apps/thgl-web/assets/tile.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/assets/tile.xcf -------------------------------------------------------------------------------- /apps/thgl-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/thgl-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/next.config.js -------------------------------------------------------------------------------- /apps/thgl-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/package.json -------------------------------------------------------------------------------- /apps/thgl-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/postcss.config.js -------------------------------------------------------------------------------- /apps/thgl-web/public/Discord-Symbol-White.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/Discord-Symbol-White.svg -------------------------------------------------------------------------------- /apps/thgl-web/public/activity-tracker.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/activity-tracker.webp -------------------------------------------------------------------------------- /apps/thgl-web/public/aeternum-map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/aeternum-map.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/aeternum-tracker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/aeternum-tracker.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/avowed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/avowed.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/cave128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/cave128.png -------------------------------------------------------------------------------- /apps/thgl-web/public/diablo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/diablo4.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/diablo4companion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/diablo4companion.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/global_icons/avowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/global_icons/avowed.webp -------------------------------------------------------------------------------- /apps/thgl-web/public/global_icons/dune.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/global_icons/dune.webp -------------------------------------------------------------------------------- /apps/thgl-web/public/global_icons/palia.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/global_icons/palia.webp -------------------------------------------------------------------------------- /apps/thgl-web/public/global_icons/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/global_icons/player.png -------------------------------------------------------------------------------- /apps/thgl-web/public/global_icons/reddit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/global_icons/reddit.webp -------------------------------------------------------------------------------- /apps/thgl-web/public/global_icons/thgl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/global_icons/thgl.png -------------------------------------------------------------------------------- /apps/thgl-web/public/global_icons/voicy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/global_icons/voicy.webp -------------------------------------------------------------------------------- /apps/thgl-web/public/hogwarts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/hogwarts.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/images/app-launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/images/app-launcher.webp -------------------------------------------------------------------------------- /apps/thgl-web/public/infinity-nikki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/infinity-nikki.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/newworldcompanion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/newworldcompanion.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/night-crows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/night-crows.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/nwmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/nwmap.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/once-human.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/once-human.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/palia-map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/palia-map.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/palia-tracker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/palia-tracker.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/palworld.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/palworld.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/partners/karolinger.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/partners/karolinger.webp -------------------------------------------------------------------------------- /apps/thgl-web/public/partners/oehrchen.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/partners/oehrchen.webp -------------------------------------------------------------------------------- /apps/thgl-web/public/pax-dei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/pax-dei.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/satisfactory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/satisfactory.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/skeleton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/skeleton.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/soc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/soc.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/sotf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/sotf.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/th.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/th.jpg -------------------------------------------------------------------------------- /apps/thgl-web/public/wuthering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/public/wuthering.jpg -------------------------------------------------------------------------------- /apps/thgl-web/src/app/advertise/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/advertise/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/api/patreon/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/api/patreon/route.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/app/apps/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/apps/[id]/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/apps/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/apps/client.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/apps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/apps/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/blog/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/blog/[id]/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/blog/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/companion-app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/companion-app/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/error.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/faq/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/faq/[id]/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/faq/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/faq/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/thgl-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/legal-notice/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/legal-notice/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/not-found.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | The Hidden Gaming Lair -------------------------------------------------------------------------------- /apps/thgl-web/src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/opengraph-image.png -------------------------------------------------------------------------------- /apps/thgl-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/privacy-policy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/privacy-policy/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/robots.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/app/support-me/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/app/support-me/page.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/benefit-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/benefit-list.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/blog-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/blog-list.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/cta-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/cta-section.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/faq-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/faq-item.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/faq-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/faq-list.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/feature-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/feature-card.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/feature-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/feature-grid.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/filter-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/filter-tabs.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/footer.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/game-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/game-card.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/game-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/game-grid.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/header.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/hero.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/info-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/info-card.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/page-header.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/page-hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/page-hero.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/page-shell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/page-shell.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/partner-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/partner-card.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/sign-out.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/sign-out.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/components/tier-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/components/tier-card.tsx -------------------------------------------------------------------------------- /apps/thgl-web/src/hooks/use-game-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/hooks/use-game-filter.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/lib/blog-entries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/lib/blog-entries.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/lib/blog-tag-mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/lib/blog-tag-mapping.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/lib/config.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/lib/faq-entries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/lib/faq-entries.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/lib/patreon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/lib/patreon.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/lib/tiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/lib/tiers.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/lib/utils.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/styles/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/styles/fonts.ts -------------------------------------------------------------------------------- /apps/thgl-web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/thgl-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/thgl-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/tsconfig.json -------------------------------------------------------------------------------- /apps/thgl-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/thgl-web/turbo.json -------------------------------------------------------------------------------- /apps/wuthering-waves-overwolf/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-overwolf/.eslintrc.js -------------------------------------------------------------------------------- /apps/wuthering-waves-overwolf/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-overwolf/background.html -------------------------------------------------------------------------------- /apps/wuthering-waves-overwolf/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-overwolf/icons/icon.png -------------------------------------------------------------------------------- /apps/wuthering-waves-overwolf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-overwolf/index.html -------------------------------------------------------------------------------- /apps/wuthering-waves-overwolf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-overwolf/manifest.json -------------------------------------------------------------------------------- /apps/wuthering-waves-overwolf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-overwolf/package.json -------------------------------------------------------------------------------- /apps/wuthering-waves-overwolf/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-overwolf/src/config.ts -------------------------------------------------------------------------------- /apps/wuthering-waves-overwolf/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-overwolf/src/main.tsx -------------------------------------------------------------------------------- /apps/wuthering-waves-overwolf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-overwolf/tsconfig.json -------------------------------------------------------------------------------- /apps/wuthering-waves-overwolf/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-overwolf/turbo.json -------------------------------------------------------------------------------- /apps/wuthering-waves-overwolf/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-overwolf/vite.config.ts -------------------------------------------------------------------------------- /apps/wuthering-waves-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/wuthering-waves-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/wuthering-waves-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/next.config.js -------------------------------------------------------------------------------- /apps/wuthering-waves-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/package.json -------------------------------------------------------------------------------- /apps/wuthering-waves-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/postcss.config.js -------------------------------------------------------------------------------- /apps/wuthering-waves-web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/wuthering-waves-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/wuthering-waves-web/src/app/opengraph-image.alt.txt: -------------------------------------------------------------------------------- 1 | Wuthering Waves Interactive Map -------------------------------------------------------------------------------- /apps/wuthering-waves-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/wuthering-waves-web/src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /nodes/ 3 | -------------------------------------------------------------------------------- /apps/wuthering-waves-web/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/wuthering-waves-web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/src/config.ts -------------------------------------------------------------------------------- /apps/wuthering-waves-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/wuthering-waves-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/tsconfig.json -------------------------------------------------------------------------------- /apps/wuthering-waves-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/apps/wuthering-waves-web/turbo.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/bun.lock -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- 1 | [install] 2 | linker = "hoisted" -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/package.json -------------------------------------------------------------------------------- /packages/config-eslint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-eslint/README.md -------------------------------------------------------------------------------- /packages/config-eslint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-eslint/index.js -------------------------------------------------------------------------------- /packages/config-eslint/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-eslint/next.js -------------------------------------------------------------------------------- /packages/config-eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-eslint/package.json -------------------------------------------------------------------------------- /packages/config-eslint/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-eslint/react.js -------------------------------------------------------------------------------- /packages/config-next/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-next/index.js -------------------------------------------------------------------------------- /packages/config-next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-next/package.json -------------------------------------------------------------------------------- /packages/config-tailwind/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-tailwind/.eslintrc.js -------------------------------------------------------------------------------- /packages/config-tailwind/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-tailwind/package.json -------------------------------------------------------------------------------- /packages/config-tailwind/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-tailwind/tailwind.config.ts -------------------------------------------------------------------------------- /packages/config-tailwind/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-tailwind/tsconfig.json -------------------------------------------------------------------------------- /packages/config-typescript/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-typescript/base.json -------------------------------------------------------------------------------- /packages/config-typescript/bun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-typescript/bun.json -------------------------------------------------------------------------------- /packages/config-typescript/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-typescript/nextjs.json -------------------------------------------------------------------------------- /packages/config-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-typescript/package.json -------------------------------------------------------------------------------- /packages/config-typescript/react-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-typescript/react-app.json -------------------------------------------------------------------------------- /packages/config-typescript/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-typescript/react-library.json -------------------------------------------------------------------------------- /packages/config-typescript/vite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/config-typescript/vite.json -------------------------------------------------------------------------------- /packages/jest-presets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/jest-presets/package.json -------------------------------------------------------------------------------- /packages/lib/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/.eslintrc.js -------------------------------------------------------------------------------- /packages/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/package.json -------------------------------------------------------------------------------- /packages/lib/src/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/account.ts -------------------------------------------------------------------------------- /packages/lib/src/cbor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/cbor.ts -------------------------------------------------------------------------------- /packages/lib/src/changelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/changelog.ts -------------------------------------------------------------------------------- /packages/lib/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/config.ts -------------------------------------------------------------------------------- /packages/lib/src/coordinates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/coordinates.ts -------------------------------------------------------------------------------- /packages/lib/src/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/discord.ts -------------------------------------------------------------------------------- /packages/lib/src/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/dom.ts -------------------------------------------------------------------------------- /packages/lib/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/env.ts -------------------------------------------------------------------------------- /packages/lib/src/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/files.ts -------------------------------------------------------------------------------- /packages/lib/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/game.ts -------------------------------------------------------------------------------- /packages/lib/src/games.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/games.ts -------------------------------------------------------------------------------- /packages/lib/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/i18n.ts -------------------------------------------------------------------------------- /packages/lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/index.ts -------------------------------------------------------------------------------- /packages/lib/src/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/metadata.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/actors-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/actors-api.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/background.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/brotli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/brotli.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/discord.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/event-bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/event-bus.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/game-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/game-events.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/games.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/games.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/gep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/gep.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/hotkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/hotkeys.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/index.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/manifest.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/plugin.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/promisify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/promisify.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/state.ts -------------------------------------------------------------------------------- /packages/lib/src/overwolf/windows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/overwolf/windows.ts -------------------------------------------------------------------------------- /packages/lib/src/search-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/search-params.ts -------------------------------------------------------------------------------- /packages/lib/src/server/changelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/server/changelog.ts -------------------------------------------------------------------------------- /packages/lib/src/server/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./changelog"; 2 | -------------------------------------------------------------------------------- /packages/lib/src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/settings.ts -------------------------------------------------------------------------------- /packages/lib/src/shared-nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/shared-nodes.ts -------------------------------------------------------------------------------- /packages/lib/src/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/sitemap.ts -------------------------------------------------------------------------------- /packages/lib/src/tailwind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/tailwind.ts -------------------------------------------------------------------------------- /packages/lib/src/testimonials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/testimonials.ts -------------------------------------------------------------------------------- /packages/lib/src/thgl-app/apps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/thgl-app/apps.ts -------------------------------------------------------------------------------- /packages/lib/src/thgl-app/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/thgl-app/controller.ts -------------------------------------------------------------------------------- /packages/lib/src/thgl-app/games.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/thgl-app/games.ts -------------------------------------------------------------------------------- /packages/lib/src/thgl-app/hotkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/thgl-app/hotkeys.ts -------------------------------------------------------------------------------- /packages/lib/src/thgl-app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/thgl-app/index.ts -------------------------------------------------------------------------------- /packages/lib/src/thgl-app/states.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/thgl-app/states.ts -------------------------------------------------------------------------------- /packages/lib/src/thgl-app/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/thgl-app/utils.ts -------------------------------------------------------------------------------- /packages/lib/src/thgl-app/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/thgl-app/version.ts -------------------------------------------------------------------------------- /packages/lib/src/thgl-app/webview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/thgl-app/webview.ts -------------------------------------------------------------------------------- /packages/lib/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/types.ts -------------------------------------------------------------------------------- /packages/lib/src/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/user.ts -------------------------------------------------------------------------------- /packages/lib/src/whiteboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/src/whiteboard.ts -------------------------------------------------------------------------------- /packages/lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/tsconfig.json -------------------------------------------------------------------------------- /packages/lib/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/tsup.config.ts -------------------------------------------------------------------------------- /packages/lib/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/lib/turbo.json -------------------------------------------------------------------------------- /packages/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/.eslintrc.js -------------------------------------------------------------------------------- /packages/ui/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/components.json -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/src/components/(ads)/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/(ads)/constants.ts -------------------------------------------------------------------------------- /packages/ui/src/components/(ads)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/(ads)/index.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/(ads)/nitro-pay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/(ads)/nitro-pay.ts -------------------------------------------------------------------------------- /packages/ui/src/components/(apps)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/(apps)/index.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/(content)/guide.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/ui/src/components/(controls)/toaster.tsx: -------------------------------------------------------------------------------- 1 | export * from "../ui/sonner"; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/(data)/comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/(data)/comment.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/(data)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/(data)/index.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/(data)/ping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/(data)/ping.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/button.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/card.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/command.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/form.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/input.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/label.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/select.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/table.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /packages/ui/src/dicts/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/de.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/en.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/es-MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/es-MX.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/es.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/fr.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/index.ts -------------------------------------------------------------------------------- /packages/ui/src/dicts/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/it.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/ja.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/ko.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/pl.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/pt-BR.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/ru.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/tr.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/uk.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/zh-CN.json -------------------------------------------------------------------------------- /packages/ui/src/dicts/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/dicts/zh-TW.json -------------------------------------------------------------------------------- /packages/ui/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/src/styles/globals.css -------------------------------------------------------------------------------- /packages/ui/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/tailwind.config.ts -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /packages/ui/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/packages/ui/turbo.json -------------------------------------------------------------------------------- /tests/peer-mesh-sim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/tests/peer-mesh-sim/README.md -------------------------------------------------------------------------------- /tests/peer-mesh-sim/sim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/tests/peer-mesh-sim/sim.html -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Hidden-Gaming-Lair/thgl-web-components/HEAD/turbo.json --------------------------------------------------------------------------------