diff --git a/plugins/sentry-skills/skills/presentation-creator/SKILL.md b/plugins/sentry-skills/skills/presentation-creator/SKILL.md
index 091bd6b..6c54b02 100644
--- a/plugins/sentry-skills/skills/presentation-creator/SKILL.md
+++ b/plugins/sentry-skills/skills/presentation-creator/SKILL.md
@@ -201,3 +201,13 @@ A working React + Vite project that:
- Contains data-driven Recharts visualizations
- Builds to a single distributable HTML file
- Has smooth fade-in animations on slide transitions
+
+## References
+
+| File | Description |
+|------|-------------|
+| `references/design-system.md` | Color palette, typography, CSS variables, layout, animations |
+| `references/chart-patterns.md` | Recharts component patterns, color usage rules, data generation |
+| `references/offline-fonts.md` | How to inline fonts for fully offline single-file builds |
+| `references/sentry-logo.svg` | Official Sentry wordmark SVG |
+| `references/sentry-glyph.svg` | Official Sentry glyph SVG |
diff --git a/plugins/sentry-skills/skills/presentation-creator/references/offline-fonts.md b/plugins/sentry-skills/skills/presentation-creator/references/offline-fonts.md
new file mode 100644
index 0000000..6af547d
--- /dev/null
+++ b/plugins/sentry-skills/skills/presentation-creator/references/offline-fonts.md
@@ -0,0 +1,59 @@
+# Offline Font Inlining
+
+By default, the presentation template loads Rubik and Material Symbols from Google Fonts via `` tags. This works for development and online use, but the fonts will **not** be included in the single-file HTML build — `vite-plugin-singlefile` only inlines local assets.
+
+If the presentation needs to work fully offline, follow these steps to inline the fonts.
+
+## Step 1: Install @fontsource/rubik
+
+Replace the Google Fonts `` with the npm package:
+
+```sh
+npm install @fontsource/rubik
+```
+
+## Step 2: Import font weights in main.jsx
+
+```jsx
+import '@fontsource/rubik/300.css'
+import '@fontsource/rubik/400.css'
+import '@fontsource/rubik/500.css'
+import '@fontsource/rubik/600.css'
+import '@fontsource/rubik/700.css'
+```
+
+## Step 3: Remove Google Fonts links from index.html
+
+Replace:
+```html
+
+
+```
+
+With:
+```html
+
+```
+
+## Step 4: Raise the asset inline limit in vite.config.js
+
+Font files (woff2) are ~50–200KB each. Set a high limit so Vite base64-encodes them into the CSS, which `vite-plugin-singlefile` then embeds in the HTML:
+
+```javascript
+export default defineConfig({
+ plugins: [react(), viteSingleFile()],
+ build: { assetsInlineLimit: 1024 * 1024 },
+})
+```
+
+## Step 5: Build
+
+```sh
+npm run build
+```
+
+The resulting `dist/index.html` will be ~1.5MB (vs ~200KB without fonts) but fully self-contained.
+
+## Material Symbols
+
+The `material-symbols` npm package can be installed similarly, but it is very large. For offline builds, prefer inline SVG or Unicode symbols for icons instead.