33 lines
895 B
TypeScript
33 lines
895 B
TypeScript
import type { Metadata } from "next";
|
|
import { translations } from "@/lib/translations";
|
|
|
|
const meta = translations.hu.discounts.pages.fbGoogle.meta;
|
|
|
|
export const metadata: Metadata = {
|
|
title: meta.title,
|
|
description: meta.description,
|
|
alternates: {
|
|
canonical: '/akciok/facebook-google/',
|
|
},
|
|
openGraph: {
|
|
title: meta.title,
|
|
description: meta.description,
|
|
url: 'https://skyflytravel.hu/akciok/facebook-google/',
|
|
siteName: 'SkyFly Travel',
|
|
locale: 'hu_HU',
|
|
type: 'website',
|
|
images: [
|
|
{
|
|
url: '/images/hero-main.jpg',
|
|
width: 1200,
|
|
height: 630,
|
|
alt: 'SkyFly Travel - Facebook & Google Akció',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return <>{children}</>;
|
|
}
|