src/app/metadata.tsximport { getStudioImage } from '@/utils/studio-helpers'import { socialLinks } from '@/components/footer/config'const socialSameAs = socialLinks.map((l) => l.href).filter((href) => href.startsWith('http'))export const baseURL =process.env.NEXT_PUBLIC_PRODUCTION_URL || 'http://localhost:3000'const logoImageData = getStudioImage('/logo.png', 'large')export const defaultDescription ='Founder Notes is an independent publication on product strategy, fundraising, hiring, and the unglamorous work of building a startup that lasts.'export const defaultOGImage = {url: logoImageData?.url || '',width: logoImageData?.width || 0,height: logoImageData?.height || 0,}
Showing the first 20 lines.
Get full code