Local SEO
Consistent NAP citations improve search rankings
Your NAP (Name, Address, Phone) displayed consistently across your entire site. One component, one source of truth. Essential for local SEO.
Search engines look for consistent NAP (Name, Address, Phone) citations across your website and the web. Inconsistent formatting hurts your local search rankings. This component ensures your business information displays identically everywhere.
Best for: Contact pages, footers, about sections
Shows complete business information with name, full address, and phone number.
<BusinessInfo variant="full" /> Best for: Headers, sidebars, inline citations
Condensed single-line display perfect for space-constrained areas.
<BusinessInfo variant="compact" />
Use showName={false} when the business name is already visible (e.g., in headers).
<BusinessInfo variant="full" showName={false} />
Edit src/config/business.js to change the displayed information:
export default {
name: 'Your Business Name',
legalName: 'Your Legal Entity Name',
phone: '(555) 123-4567',
address: {
street: '123 Main Street',
city: 'San Francisco',
state: 'CA',
zip: '94102',
},
// ... other config
}; Consistent NAP citations improve search rankings
Phone numbers are clickable for mobile users
Full and compact display options
Pulls data from business.js config
Import once, use everywhere. Changes in business.js update the entire site automatically.