diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 64ce127..9fa7cfb 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -109,4 +109,4 @@ export default function BlogPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 758d87f..7ed03d2 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,47 +1,22 @@
import type { Metadata } from "next";
-import { Ubuntu } from "next/font/google";
+import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "./styles/variables.css";
+import "./styles/base.css";
-const ubuntu = Ubuntu({
- variable: "--font-ubuntu", subsets: ["latin"],
- weight: ["300", "400", "500", "700"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "GlowUp Beauty Clinic | Premium Beauty & Wellness Services", description: "Experience luxury beauty treatments at GlowUp Clinic. Expert facials, hair services, makeup artistry, and spa wellness. Book your appointment today.", keywords: "beauty clinic, facial treatments, hair salon, makeup artist, spa wellness, skincare services, professional beauty", metadataBase: new URL("https://glowupbeautyclinic.com"),
- alternates: {
- canonical: "https://glowupbeautyclinic.com"
- },
- openGraph: {
- title: "GlowUp Beauty Clinic | Premium Beauty & Wellness", description: "Transform your beauty with expert treatments from certified professionals", siteName: "GlowUp Beauty Clinic", type: "website", images: [{
- url: "https://img.b2bpic.net/free-photo/two-female-friends-relaxing-spa-holding-cocktails_1157-49807.jpg", alt: "GlowUp Beauty Clinic"
- }]
- },
- twitter: {
- card: "summary_large_image", title: "GlowUp Beauty Clinic", description: "Premium beauty and wellness services for your transformation", images: ["https://img.b2bpic.net/free-photo/two-female-friends-relaxing-spa-holding-cocktails_1157-49807.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "GlowUp Beauty Clinic", description: "Premium beauty treatments delivered by expert professionals"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-