From 71f1b3fa53be6c1d4658784f41b90ca330367413 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Feb 2026 07:23:21 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 69e0ffe..a0b8359 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -71,4 +71,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From b71d34022daada33d8d372d7123b4083bd1e41c8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Feb 2026 07:23:22 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 41 +++++++++-------------------------------- 1 file changed, 9 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f654688..8412fc0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,23 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; +import { Inter } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Élite Aesthetics | Premium Beauty Enhancement Surgery", description: "Board-certified surgical experts delivering transformative aesthetic results. Luxury beauty enhancement with cutting-edge techniques.", keywords: "cosmetic surgery, facial enhancement, rhinoplasty, facelift, breast augmentation, body contouring, aesthetic surgeon, beauty surgery", robots: { - index: true, - follow: true - }, - openGraph: { - title: "Élite Aesthetics | Premium Surgical Beauty Enhancement", description: "Transformative aesthetic surgery by board-certified experts. Luxury results, personalized care.", siteName: "Élite Aesthetics", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/senior-patient-signing-medical-decisions-form-sitting-hospital-bed-modern-private-clinic-doctor-with-clipboard-nurse-working-backgorund-healthcare-medical-medicinal-system-documents-contra_482257-4751.jpg", alt: "Premium surgical consultation" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Élite Aesthetics | Premium Beauty Surgery", description: "Board-certified aesthetic surgeons delivering transformative results.", images: ["http://img.b2bpic.net/free-photo/male-patient-receiving-massage-from-doctor_107420-65163.jpg"] - } -}; + title: "Élite Aesthetics", description: "Surgical excellence meets aesthetic artistry"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}