diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 72bfbd5..8a77674 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -23,25 +23,29 @@ const interTight = Inter_Tight({ export const metadata: Metadata = { title: "Luxe Academy | Premium Luxury Lifestyle Education", description: "Master the art of luxury living through exclusive, transformative courses. Learn from industry leaders in branding, travel, wealth, and sustainable luxury.", keywords: "luxury education, premium courses, lifestyle brand, luxury branding, wealth management, personal development", metadataBase: new URL("https://luxeacademy.com"), alternates: { - canonical: "https://luxeacademy.com"}, + canonical: "https://luxeacademy.com" + }, openGraph: { title: "Luxe Academy | Transform Your Luxury Expertise", description: "Exclusive education for professionals seeking mastery in luxury lifestyle, branding, and premium positioning.", url: "https://luxeacademy.com", siteName: "Luxe Academy", images: [ { - url: "http://img.b2bpic.net/free-photo/young-attractive-woman-sitting-lecture-hall-working-laptop-wearing-glasses-modern-auditorium-student-education-online-freelancer-smiling-using-smartphone-digital-devices_285396-48.jpg", alt: "luxury lifestyle course elegant classroom"}, + url: "http://img.b2bpic.net/free-photo/young-attractive-woman-sitting-lecture-hall-working-laptop-wearing-glasses-modern-auditorium-student-education-online-freelancer-smiling-using-smartphone-digital-devices_285396-48.jpg", alt: "luxury lifestyle course elegant classroom" + } ], - type: "website"}, + type: "website" + }, twitter: { card: "summary_large_image", title: "Luxe Academy | Premium Luxury Education", description: "Join thousands of luxury professionals mastering the art of premium positioning and refined living.", images: [ - "http://img.b2bpic.net/free-photo/young-attractive-woman-sitting-lecture-hall-working-laptop-wearing-glasses-modern-auditorium-student-education-online-freelancer-smiling-using-smartphone-digital-devices_285396-48.jpg"], + "http://img.b2bpic.net/free-photo/young-attractive-woman-sitting-lecture-hall-working-laptop-wearing-glasses-modern-auditorium-student-education-online-freelancer-smiling-using-smartphone-digital-devices_285396-48.jpg" + ] }, robots: { index: true, - follow: true, - }, + follow: true + } }; export default function RootLayout({ - children, + children }: Readonly<{ children: React.ReactNode; }>) {