···11+// Fallback images for profile and banner
12export { default as profileFallback } from './fallback/profile.svg';
23export { default as bannerFallback } from './fallback/banner.svg';
33-export { default as mainOG } from './og/main.png';
44-export { default as nowOG } from './og/now.png';
55-export { default as siteMetaOG } from './og/site-meta.png';
44+55+// Note: OG images are now served from ./static/og/
66+// Use the ogImages object from $lib/helper/ogImages for OG image paths
-3
src/lib/assets/og/index.ts
···11-export { default as main } from './main.png';
22-export { default as now } from './now.png';
33-export { default as siteMeta } from './site-meta.png';
···11+/**
22+ * OG (Open Graph) image paths
33+ *
44+ * These images are served from the ./static/og/ directory.
55+ * They are accessible at /og/ URLs in the application.
66+ *
77+ * To add new OG images:
88+ * 1. Place the image in ./static/og/
99+ * 2. Add the path here as /og/filename.png
1010+ */
111export const ogImages: Record<string, string> = {
212 main: '/og/main.png',
313 siteMeta: '/og/site-meta.png'
44-};1414+};