Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -73,7 +73,7 @@ export default function AboutPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-using-automated-machine-while-working-woodworking-factory_637285-11997.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-using-automated-machine-while-working-woodworking-factory_637285-11997.jpg?_wi=2"
|
||||
imageAlt="ENCO manufacturing excellence"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -208,7 +208,7 @@ export default function AboutPage() {
|
||||
|
||||
<div id="footer-about" data-section="footer-about">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg?_wi=6"
|
||||
imageAlt="ENCO professional aesthetic device"
|
||||
logoText="ENCO"
|
||||
copyrightText="© 2025 ENCO Medical Aesthetic Devices. All rights reserved."
|
||||
|
||||
@@ -213,7 +213,7 @@ export default function ContactPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg?_wi=7"
|
||||
imageAlt="ENCO professional aesthetic device"
|
||||
logoText="ENCO"
|
||||
copyrightText="© 2025 ENCO Medical Aesthetic Devices. All rights reserved."
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } 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 { Poppins } 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 poppins = Poppins({
|
||||
variable: "--font-poppins",
|
||||
@@ -20,6 +24,39 @@ const poppins = Poppins({
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Medical Aesthetic Devices | ENCO Technology",
|
||||
description: "Advanced aesthetic devices for clinics and professionals. Pressotherapy, radiofrequency, and combination systems. ISO certified, clinically proven, exceptional ROI.",
|
||||
keywords: "aesthetic devices, pressotherapy, radiofrequency, medical aesthetics, beauty clinic equipment, professional treatments, aesthetic technology",
|
||||
metadataBase: new URL("https://www.encoaesthetics.com"),
|
||||
alternates: {
|
||||
canonical: "https://www.encoaesthetics.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Professional Medical Aesthetic Devices | ENCO",
|
||||
description: "Transform your clinic with ENCO's advanced aesthetic technology. Proven results, quick ROI, global support.",
|
||||
url: "https://www.encoaesthetics.com",
|
||||
siteName: "ENCO Medical Aesthetic Devices",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://www.encoaesthetics.com/og-image.jpg",
|
||||
alt: "ENCO professional aesthetic device",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Professional Medical Aesthetic Devices | ENCO",
|
||||
description: "Advanced aesthetic equipment for beauty clinics and medical professionals",
|
||||
images: ["https://www.encoaesthetics.com/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -28,7 +65,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -84,7 +84,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg?_wi=1"
|
||||
imageAlt="Professional aesthetic device ENCO technology"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -144,7 +144,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-using-automated-machine-while-working-woodworking-factory_637285-11997.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-using-automated-machine-while-working-woodworking-factory_637285-11997.jpg?_wi=1"
|
||||
imageAlt="ENCO manufacturing facility"
|
||||
useInvertedBackground={true}
|
||||
className="w-full py-16 md:py-24"
|
||||
@@ -229,7 +229,7 @@ export default function HomePage() {
|
||||
name: "PressotherapyPRO System",
|
||||
variant: "Professional Edition",
|
||||
price: "Contact for pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-relaxing-while-beautician-wrapping-towel-woman-s-head-spa_23-2147939880.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-relaxing-while-beautician-wrapping-towel-woman-s-head-spa_23-2147939880.jpg?_wi=1",
|
||||
imageAlt: "PressotherapyPRO professional device",
|
||||
},
|
||||
{
|
||||
@@ -237,7 +237,7 @@ export default function HomePage() {
|
||||
name: "RadiofrequencyElite",
|
||||
variant: "Advanced RF Technology",
|
||||
price: "Contact for pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-girl-with-mobile-phone-sits-floor-home-orders-takeaway-app-young-woman-with_1258-200034.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-girl-with-mobile-phone-sits-floor-home-orders-takeaway-app-young-woman-with_1258-200034.jpg?_wi=1",
|
||||
imageAlt: "RadiofrequencyElite device",
|
||||
},
|
||||
{
|
||||
@@ -245,7 +245,7 @@ export default function HomePage() {
|
||||
name: "MultiSPA Combination",
|
||||
variant: "Integrated Multi-Technology",
|
||||
price: "Contact for pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-using-eye-patches_23-2150467043.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-using-eye-patches_23-2150467043.jpg?_wi=1",
|
||||
imageAlt: "MultiSPA combination device",
|
||||
},
|
||||
]}
|
||||
@@ -335,7 +335,7 @@ export default function HomePage() {
|
||||
name: "Dr. Maria Rossi",
|
||||
handle: "Aesthetic Clinic Owner, Milan",
|
||||
testimonial: "ENCO devices transformed our clinic. Investment paid back within 4 months. Patients love the results and keep returning. Exceptional support team.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-casual-wear-home_624325-4164.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-casual-wear-home_624325-4164.jpg?_wi=1",
|
||||
imageAlt: "Dr. Maria Rossi",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -344,7 +344,7 @@ export default function HomePage() {
|
||||
name: "Emma Schmidt",
|
||||
handle: "Beauty Professional, Berlin",
|
||||
testimonial: "The PressotherapyPRO is reliable, easy to use, and my clients see noticeable results. Customer support is outstanding. Highly recommend ENCO.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-getting-micro-needling-beauty-treatment_23-2149334257.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-getting-micro-needling-beauty-treatment_23-2149334257.jpg?_wi=1",
|
||||
imageAlt: "Emma Schmidt",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -353,7 +353,7 @@ export default function HomePage() {
|
||||
name: "Dr. Antonio Garcia",
|
||||
handle: "Medical Aesthetic Specialist, Barcelona",
|
||||
testimonial: "The technology is medical-grade and the results are consistent. Perfect for my specialized practice. Training was comprehensive. Excellent investment.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-casual-wear-home_624325-4164.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-casual-wear-home_624325-4164.jpg?_wi=2",
|
||||
imageAlt: "Dr. Antonio Garcia",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -362,7 +362,7 @@ export default function HomePage() {
|
||||
name: "Lisa Thompson",
|
||||
handle: "Wellness Center Director, London",
|
||||
testimonial: "MultiSPA device opened new revenue streams. My team loves it, clients are thrilled, and profitability exceeded expectations. ENCO's support is invaluable.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-business-card_23-2149343383.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-business-card_23-2149343383.jpg?_wi=1",
|
||||
imageAlt: "Lisa Thompson",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -371,7 +371,7 @@ export default function HomePage() {
|
||||
name: "Dr. Philippe Laurent",
|
||||
handle: "Medical Clinic Director, Paris",
|
||||
testimonial: "Professional results, durable equipment, exceptional service. This is what medical device excellence looks like. Can't imagine my clinic without ENCO.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-casual-wear-home_624325-4164.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-casual-wear-home_624325-4164.jpg?_wi=3",
|
||||
imageAlt: "Dr. Philippe Laurent",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -380,7 +380,7 @@ export default function HomePage() {
|
||||
name: "Sarah Williams",
|
||||
handle: "Beauty Studio Owner, Amsterdam",
|
||||
testimonial: "ROI was faster than expected. Clients book weeks in advance for treatments. Support team responds within hours. Best business decision we made.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-getting-micro-needling-beauty-treatment_23-2149334257.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-getting-micro-needling-beauty-treatment_23-2149334257.jpg?_wi=2",
|
||||
imageAlt: "Sarah Williams",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -476,7 +476,7 @@ export default function HomePage() {
|
||||
|
||||
<div id="footer-home" data-section="footer-home">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg?_wi=2"
|
||||
imageAlt="ENCO professional aesthetic device"
|
||||
logoText="ENCO"
|
||||
copyrightText="© 2025 ENCO Medical Aesthetic Devices. All rights reserved."
|
||||
|
||||
@@ -105,7 +105,7 @@ export default function ProductsPage() {
|
||||
}
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg?_wi=3"
|
||||
imageAlt="Professional aesthetic device line"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -139,7 +139,7 @@ export default function ProductsPage() {
|
||||
name: "PressotherapyPRO System",
|
||||
variant: "Professional Edition",
|
||||
price: "Contact for pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-relaxing-while-beautician-wrapping-towel-woman-s-head-spa_23-2147939880.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-relaxing-while-beautician-wrapping-towel-woman-s-head-spa_23-2147939880.jpg?_wi=2",
|
||||
imageAlt: "PressotherapyPRO System - Advanced lymphatic drainage and circulation therapy device"
|
||||
},
|
||||
{
|
||||
@@ -147,7 +147,7 @@ export default function ProductsPage() {
|
||||
name: "RadiofrequencyElite",
|
||||
variant: "Advanced RF Technology",
|
||||
price: "Contact for pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-girl-with-mobile-phone-sits-floor-home-orders-takeaway-app-young-woman-with_1258-200034.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-girl-with-mobile-phone-sits-floor-home-orders-takeaway-app-young-woman-with_1258-200034.jpg?_wi=2",
|
||||
imageAlt: "RadiofrequencyElite - Professional radiofrequency skin tightening and rejuvenation system"
|
||||
},
|
||||
{
|
||||
@@ -155,7 +155,7 @@ export default function ProductsPage() {
|
||||
name: "MultiSPA Combination",
|
||||
variant: "Integrated Multi-Technology",
|
||||
price: "Contact for pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-using-eye-patches_23-2150467043.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-using-eye-patches_23-2150467043.jpg?_wi=2",
|
||||
imageAlt: "MultiSPA Combination - Multi-technology integrated aesthetic treatment platform"
|
||||
}
|
||||
]}
|
||||
@@ -213,7 +213,7 @@ export default function ProductsPage() {
|
||||
|
||||
<div id="footer-products" data-section="footer-products">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg?_wi=4"
|
||||
imageAlt="ENCO professional aesthetic device"
|
||||
logoText="ENCO"
|
||||
copyrightText="© 2025 ENCO Medical Aesthetic Devices. All rights reserved."
|
||||
|
||||
@@ -162,7 +162,7 @@ export default function TreatmentsPage() {
|
||||
name: "Dr. Elena Paoletti",
|
||||
handle: "Aesthetic Dermatologist, Rome",
|
||||
testimonial: "Treatment outcomes are exceptional. Patients see visible results within 6-8 sessions. The combination protocol has become our signature offering.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-getting-micro-needling-beauty-treatment_23-2149334257.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-getting-micro-needling-beauty-treatment_23-2149334257.jpg?_wi=3",
|
||||
imageAlt: "Dr. Elena Paoletti",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -171,7 +171,7 @@ export default function TreatmentsPage() {
|
||||
name: "Thomas Mueller",
|
||||
handle: "Spa & Wellness Director, Munich",
|
||||
testimonial: "Our clients consistently report improvement in skin texture and body confidence. Treatment satisfaction rate exceeds 95%. Outstanding clinical protocol support.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-casual-wear-home_624325-4164.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-casual-wear-home_624325-4164.jpg?_wi=4",
|
||||
imageAlt: "Thomas Mueller",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -180,7 +180,7 @@ export default function TreatmentsPage() {
|
||||
name: "Dr. Isabelle Benoit",
|
||||
handle: "Medical Aesthetic Clinic, Geneva",
|
||||
testimonial: "Evidence-based treatment protocols, measurable results, and patient adherence are excellent. It's a game-changer for our clinical offerings.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-business-card_23-2149343383.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-business-card_23-2149343383.jpg?_wi=2",
|
||||
imageAlt: "Dr. Isabelle Benoit",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -189,7 +189,7 @@ export default function TreatmentsPage() {
|
||||
name: "Marco Rossi",
|
||||
handle: "Beauty Clinic Owner, Milan",
|
||||
testimonial: "Treatment protocols are easy to follow, results are consistent, and clients rebook immediately after experiencing benefits. Premium pricing justified by outcomes.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-casual-wear-home_624325-4164.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-casual-wear-home_624325-4164.jpg?_wi=5",
|
||||
imageAlt: "Marco Rossi",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -198,7 +198,7 @@ export default function TreatmentsPage() {
|
||||
name: "Dr. Sophie Leclerc",
|
||||
handle: "Post-Op Recovery Specialist, Paris",
|
||||
testimonial: "Pressotherapy protocol accelerates post-operative recovery and reduces complications. We've integrated it into our standard post-procedure care. Transformative.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-business-card_23-2149343383.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-business-card_23-2149343383.jpg?_wi=3",
|
||||
imageAlt: "Dr. Sophie Leclerc",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -207,7 +207,7 @@ export default function TreatmentsPage() {
|
||||
name: "Amanda Sterling",
|
||||
handle: "Wellness Coach, London",
|
||||
testimonial: "Treatment results, client satisfaction, and repeat booking rates have never been better. ENCO devices deliver on their promises consistently.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-getting-micro-needling-beauty-treatment_23-2149334257.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-getting-micro-needling-beauty-treatment_23-2149334257.jpg?_wi=4",
|
||||
imageAlt: "Amanda Sterling",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -223,7 +223,7 @@ export default function TreatmentsPage() {
|
||||
|
||||
<div id="footer-treatments" data-section="footer-treatments">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hands-holding-stone-made-instrument-gradient-background_23-2149364175.jpg?_wi=5"
|
||||
imageAlt="ENCO professional aesthetic device"
|
||||
logoText="ENCO"
|
||||
copyrightText="© 2025 ENCO Medical Aesthetic Devices. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user