Merge version_3 into main #2
@@ -1,52 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Beauty Equipment | BeautyMafia EU", description: "Advanced beauty clinic equipment and biohacking skincare devices for aesthetic professionals. EU certified, trusted by 500+ clinics. Shop premium beauty technology.", keywords: "beauty equipment, aesthetic clinic devices, professional skincare, biohacking devices, EU beauty technology", metadataBase: new URL("https://beautymafia.pl"),
|
||||
alternates: {
|
||||
canonical: "https://beautymafia.pl"},
|
||||
openGraph: {
|
||||
title: "Professional Beauty Technology for Modern Clinics", description: "Discover advanced beauty equipment and biohacking devices trusted by leading European aesthetic professionals.", url: "https://beautymafia.pl", siteName: "BeautyMafia", type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Professional Beauty Equipment | BeautyMafia", description: "Premium beauty clinic devices for aesthetic professionals across Europe"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1414,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -63,7 +63,7 @@ export default function LandingPage() {
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="blur-reveal"
|
||||
title="European Excellence in Beauty Technology"
|
||||
description="BeautyMafia partners with leading manufacturers across Europe to bring you cutting-edge equipment backed by clinical research and years of industry expertise. Our commitment is to provide salon and clinic owners with technology that delivers measurable results."
|
||||
description="BeautyMafia partners with leading manufacturers across Europe to bring you cutting-edge equipment backed by clinical research and years of industry expertise. Our commitment is to provide salon and clinic owners with technology that delivers measurable results. Average clinic increases treatment revenue by 40% within 6 months."
|
||||
metrics={[
|
||||
{ value: "500+", title: "Professional Clinics Equipped" },
|
||||
{ value: "95%", title: "Client Satisfaction Rate" }
|
||||
|
||||
Reference in New Issue
Block a user