From f58844da6d28f270dad63fb8a882dced020123cd Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:22:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) 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; }>) { -- 2.49.1 From f0b7688ffbdda04558ca62b0efc9345f48a807a0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:22:58 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b88f804..91edc9a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; @@ -106,19 +106,19 @@ export default function LandingPage() { useInvertedBackground={false} plans={[ { - id: "essentials", tag: "Foundation Course", price: "$2,997", period: "/course", description: "Perfect for those new to luxury lifestyle education", button: { text: "Enroll Now", href: "#contact" }, + id: "essentials", tag: "Foundation Course", price: "$2,997", period: "/course", description: "Perfect for those new to luxury lifestyle education", button: { text: "Enroll Now", href: "https://buy.stripe.com/essentials" }, featuresTitle: "What's Included:", features: [ "8-week comprehensive curriculum", "Weekly live instructor sessions", "Access to exclusive community forum", "Certificate of completion", "Lifetime access to course materials" ] }, { - id: "premium", tag: "Premium Program", price: "$7,997", period: "/year", description: "For serious learners seeking deeper mastery", button: { text: "Apply Today", href: "#contact" }, + id: "premium", tag: "Premium Program", price: "$7,997", period: "/year", description: "For serious learners seeking deeper mastery", button: { text: "Apply Today", href: "https://buy.stripe.com/premium" }, featuresTitle: "Premium Includes:", features: [ "All Foundation benefits", "Access to ALL signature courses", "Monthly one-on-one coaching sessions", "Priority instructor feedback", "Networking events with industry leaders", "Advanced case study materials" ] }, { - id: "elite", tag: "Elite Mentorship", price: "Custom", period: "inquiry", description: "Bespoke luxury education for discerning professionals", button: { text: "Schedule Consultation", href: "#contact" }, + id: "elite", tag: "Elite Mentorship", price: "Custom", period: "inquiry", description: "Bespoke luxury education for discerning professionals", button: { text: "Schedule Consultation", href: "https://buy.stripe.com/elite" }, featuresTitle: "Elite Experience:", features: [ "All Premium benefits", "Personalized curriculum design", "Dedicated mentor matching", "Quarterly executive retreats", "VIP access to luxury brand partnerships", "Custom certification pathway" ] @@ -207,7 +207,7 @@ export default function LandingPage() { text="Ready to elevate your luxury lifestyle expertise? Join our community of discerning professionals and transform your understanding of premium positioning, wealth, and refined living." animationType="entrance-slide" buttons={[ - { text: "Begin Your Transformation", href: "https://mail.google.com" }, + { text: "Begin Your Transformation", href: "https://buy.stripe.com/purchase" }, { text: "Schedule a Consultation", href: "https://calendly.com" } ]} background={{ variant: "plain" }} -- 2.49.1