Update src/app/layout.tsx

This commit is contained in:
2026-03-06 16:22:57 +00:00
parent 97eb73c435
commit f58844da6d

View File

@@ -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;
}>) {