From e6b2a1cc4e07e04acc1e7dcdc09b16bfd1a77765 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 20:01:09 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9c13f9a..fd74907 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -101,7 +101,7 @@ export default function AboutPage() { title: "Empower Creators", description: "We believe every talented photographer and videographer deserves to build a profitable luxury business without underpricing their craft.", - imageSrc: "http://img.b2bpic.net/free-photo/people-meeting_23-2149370606.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-meeting_23-2149370606.jpg?_wi=2", imageAlt: "empowerment and business growth", }, { @@ -109,7 +109,7 @@ export default function AboutPage() { title: "Premium Positioning", description: "We teach the principles of premium positioning and luxury branding that attract high-end clients and command premium rates.", - imageSrc: "http://img.b2bpic.net/free-photo/colleagues-working-together-project_23-2149286149.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/colleagues-working-together-project_23-2149286149.jpg?_wi=2", imageAlt: "premium business collaboration", }, { @@ -117,7 +117,7 @@ export default function AboutPage() { title: "Community Support", description: "Our thriving community of 10,000+ members provides ongoing support, accountability, and inspiration on your journey.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-planning-trip_23-2149048021.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-planning-trip_23-2149048021.jpg?_wi=2", imageAlt: "community and teamwork", }, ]} -- 2.49.1 From d437eba2f1421557c5022ad61ffef15b98a324dd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 20:01:09 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 38 ++++++++++++++++++++++++++++++-------- 1 file changed, 30 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..1dc726c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,44 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Raleway } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Wedding Profit Academy - Luxury Photography & Videography Coaching", + description: "Master luxury wedding photography and videography business. Learn premium positioning, pricing strategies, and proven systems to build a six-figure photography business.", + keywords: "wedding photography coaching, luxury photography business, videography training, photography pricing strategy, wedding photographer education", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Wedding Profit Academy - Transform Your Photography Business", + description: "Join 10,000+ luxury wedding photographers and videographers building six-figure businesses. Premium coaching, proven systems, and community support.", + type: "website", + siteName: "Wedding Profit Academy", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +47,9 @@ export default function RootLayout({ return ( - + {children}