You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Power SEO Bot edited this page Feb 27, 2026
·
1 revision
Framework Integration
Power-SEO works seamlessly with popular frameworks.
Next.js 14+ (App Router)
// app/layout.tsximport{createMetadata}from'@power-seo/meta';exportconstmetadata=createMetadata({title: 'My Site',description: 'Welcome to my site',metadataBase: newURL('https://example.com'),});
Next.js 13 (Pages Router)
// pages/_app.tsximport{DefaultSEO}from'@power-seo/react';<DefaultSEOtitleTemplate="%s | My Site"defaultTitle="My Site"openGraph={{type: 'website',siteName: 'My Site',}}/>
Remix v2
// app/routes/index.tsximport{createMetaDescriptors}from'@power-seo/meta';exportconstmeta=()=>createMetaDescriptors({title: 'Home',description: 'Welcome to my site',});
React SPA (Vite / Create React App)
import{DefaultSEO}from'@power-seo/react';<DefaultSEOtitleTemplate="%s | My App"defaultTitle="My App"/>
Each framework has specific adapters and helpers. Check the Installation & Setup guide for detailed setup.