A simple SEO inspecter Tool, to get social media card previews
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 17 lines 554 B view raw
1import SEOTester from '@/components/SEOTester'; 2import { HelmetProvider } from 'react-helmet-async'; 3import { SEOMetaTags } from '@/components/SEOMetaTags'; 4 5const Index = () => { 6 return ( 7 <HelmetProvider> 8 <SEOMetaTags 9 title="SEO Tester - Analyze & Optimize Your Website Meta Tags" 10 description="Free SEO analysis tool to check meta tags, Open Graph, Twitter Cards, and technical SEO. Improve your website's search engine visibility instantly." 11 /> 12 <SEOTester /> 13 </HelmetProvider> 14 ); 15}; 16 17export default Index;