├── .gitignore ├── .npmrc ├── README.md ├── eslint.config.mjs ├── next-sitemap.config.js ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── prettier.config.mjs ├── public ├── canvas │ ├── game-stats-icon.png │ ├── join-icon.png │ ├── loc-icon.png │ ├── seen-icon.png │ └── steeeam-canvas.png ├── example1.png ├── example2.png ├── example3.png ├── landing-bg.svg ├── logo.png ├── logo.svg ├── og-image.png └── steam-settings.gif ├── src ├── app │ ├── [id] │ │ └── page.tsx │ ├── api │ │ ├── [id] │ │ │ └── route.ts │ │ ├── gamedata │ │ │ └── route.ts │ │ └── steaminfo │ │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── hero.ts │ ├── layout.tsx │ ├── page.tsx │ └── providers.tsx ├── components │ ├── Footer.tsx │ ├── Landing.tsx │ ├── Loader.tsx │ ├── Navbar.tsx │ ├── SearchInput.tsx │ ├── sidebar │ │ ├── Avatar.tsx │ │ ├── IdModal.tsx │ │ ├── Navigation.tsx │ │ ├── Sidebar.tsx │ │ ├── UserBans.tsx │ │ ├── UserConnections.tsx │ │ ├── UserDetails.tsx │ │ └── UserLocation.tsx │ └── summary │ │ ├── AccountValue.tsx │ │ ├── Error.tsx │ │ ├── ExpProgressBar.tsx │ │ ├── GameDetails.tsx │ │ ├── GameProgressBar.tsx │ │ ├── GameStats.tsx │ │ ├── ProfileSummary.tsx │ │ ├── ShareableImage.tsx │ │ └── TopFiveGames.tsx ├── fonts │ ├── Elgraine-Black-Italic.ttf │ └── GeistVF.woff2 ├── types │ ├── steam-level.d.ts │ ├── user-game-data.ts │ └── user-summary.ts └── utils │ └── utils.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/.npmrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/next-sitemap.config.js -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /public/canvas/game-stats-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/canvas/game-stats-icon.png -------------------------------------------------------------------------------- /public/canvas/join-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/canvas/join-icon.png -------------------------------------------------------------------------------- /public/canvas/loc-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/canvas/loc-icon.png -------------------------------------------------------------------------------- /public/canvas/seen-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/canvas/seen-icon.png -------------------------------------------------------------------------------- /public/canvas/steeeam-canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/canvas/steeeam-canvas.png -------------------------------------------------------------------------------- /public/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/example1.png -------------------------------------------------------------------------------- /public/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/example2.png -------------------------------------------------------------------------------- /public/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/example3.png -------------------------------------------------------------------------------- /public/landing-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/landing-bg.svg -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/steam-settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/public/steam-settings.gif -------------------------------------------------------------------------------- /src/app/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/app/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/api/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/app/api/[id]/route.ts -------------------------------------------------------------------------------- /src/app/api/gamedata/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/app/api/gamedata/route.ts -------------------------------------------------------------------------------- /src/app/api/steaminfo/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/app/api/steaminfo/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/hero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/app/hero.ts -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/Landing.tsx -------------------------------------------------------------------------------- /src/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/Loader.tsx -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/components/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/SearchInput.tsx -------------------------------------------------------------------------------- /src/components/sidebar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/sidebar/Avatar.tsx -------------------------------------------------------------------------------- /src/components/sidebar/IdModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/sidebar/IdModal.tsx -------------------------------------------------------------------------------- /src/components/sidebar/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/sidebar/Navigation.tsx -------------------------------------------------------------------------------- /src/components/sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/sidebar/UserBans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/sidebar/UserBans.tsx -------------------------------------------------------------------------------- /src/components/sidebar/UserConnections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/sidebar/UserConnections.tsx -------------------------------------------------------------------------------- /src/components/sidebar/UserDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/sidebar/UserDetails.tsx -------------------------------------------------------------------------------- /src/components/sidebar/UserLocation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/sidebar/UserLocation.tsx -------------------------------------------------------------------------------- /src/components/summary/AccountValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/summary/AccountValue.tsx -------------------------------------------------------------------------------- /src/components/summary/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/summary/Error.tsx -------------------------------------------------------------------------------- /src/components/summary/ExpProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/summary/ExpProgressBar.tsx -------------------------------------------------------------------------------- /src/components/summary/GameDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/summary/GameDetails.tsx -------------------------------------------------------------------------------- /src/components/summary/GameProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/summary/GameProgressBar.tsx -------------------------------------------------------------------------------- /src/components/summary/GameStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/summary/GameStats.tsx -------------------------------------------------------------------------------- /src/components/summary/ProfileSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/summary/ProfileSummary.tsx -------------------------------------------------------------------------------- /src/components/summary/ShareableImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/summary/ShareableImage.tsx -------------------------------------------------------------------------------- /src/components/summary/TopFiveGames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/components/summary/TopFiveGames.tsx -------------------------------------------------------------------------------- /src/fonts/Elgraine-Black-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/fonts/Elgraine-Black-Italic.ttf -------------------------------------------------------------------------------- /src/fonts/GeistVF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/fonts/GeistVF.woff2 -------------------------------------------------------------------------------- /src/types/steam-level.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/types/steam-level.d.ts -------------------------------------------------------------------------------- /src/types/user-game-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/types/user-game-data.ts -------------------------------------------------------------------------------- /src/types/user-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/types/user-summary.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steeeam/HEAD/tsconfig.json --------------------------------------------------------------------------------