facebook.
This commit is contained in:
parent
7e894bf65e
commit
8ade0ef92b
|
|
@ -5,6 +5,7 @@ import { Providers } from '@/components/Providers';
|
|||
import MarketingLayout from './MarketingLayout';
|
||||
// Import schema functions from library
|
||||
import { organizationSchema, websiteSchema } from '@/lib/schema';
|
||||
import FacebookPixel from '@/components/analytics/FacebookPixel';
|
||||
|
||||
const isIndexable = process.env.NEXT_PUBLIC_INDEXABLE === 'true';
|
||||
|
||||
|
|
@ -46,6 +47,11 @@ export const metadata: Metadata = {
|
|||
],
|
||||
locale: 'en_US',
|
||||
},
|
||||
verification: {
|
||||
other: {
|
||||
'facebook-domain-verification': process.env.NEXT_PUBLIC_FACEBOOK_DOMAIN_VERIFICATION || '',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default function MarketingGroupLayout({
|
||||
|
|
@ -59,6 +65,7 @@ export default function MarketingGroupLayout({
|
|||
type="application/ld+json"
|
||||
dangerouslySetInnerHTML={{ __html: JSON.stringify(organizationSchema()) }}
|
||||
/>
|
||||
<FacebookPixel />
|
||||
<MarketingLayout>
|
||||
{children}
|
||||
</MarketingLayout>
|
||||
|
|
|
|||
Loading…
Reference in New Issue