Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-12 12:15:23 +00:00
4 changed files with 63 additions and 31 deletions

View File

@@ -1,27 +1,57 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Maison Lure | Luxury Beauty Salon Lisbon",
description: "Experience premium beauty treatments in Lisbon. Hair, face and body care with luxury services at Maison Lure.",
keywords: "beauty salon Lisbon, luxury spa, hair treatment, facial care, body massage, premium beauty services",
metadataBase: new URL("https://maisonlure.pt"),
alternates: {
canonical: "https://maisonlure.pt",
},
openGraph: {
title: "Maison Lure - Luxury Beauty Salon",
description: "Premium beauty treatments in the heart of Lisbon",
siteName: "Maison Lure",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/woman-enjoying-her-beauty-routine-with-golden-eye-patches_23-2150166411.jpg",
alt: "Maison Lure Luxury Salon",
},
],
},
twitter: {
card: "summary_large_image",
title: "Maison Lure - Luxury Beauty Salon",
description: "Premium beauty treatments in Lisbon",
images: [
"http://img.b2bpic.net/free-photo/woman-enjoying-her-beauty-routine-with-golden-eye-patches_23-2150166411.jpg",
],
},
};
export default function RootLayout({
children,
@@ -31,7 +61,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +75,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -117,7 +117,7 @@ export default function HomePage() {
description="Maison Lure"
subdescription="Lisbon, Portugal - Desde 2015 | Since 2015"
icon={Heart}
imageSrc="http://img.b2bpic.net/free-photo/blurred-bar-with-stools_1203-454.jpg"
imageSrc="http://img.b2bpic.net/free-photo/blurred-bar-with-stools_1203-454.jpg?_wi=1"
imageAlt="Maison Lure Premium Salon"
mediaAnimation="slide-up"
useInvertedBackground={false}
@@ -139,7 +139,7 @@ export default function HomePage() {
title: "Tratamentos de Cabelo | Hair Treatments",
description: "Coloração, corte premium, alisamento e restauração capilar | Hair coloring, premium cuts, smoothing and restoration",
tag: "Cabelo",
imageSrc: "http://img.b2bpic.net/free-photo/professional-stylist-working-with-client_23-2147769765.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/professional-stylist-working-with-client_23-2147769765.jpg?_wi=1",
imageAlt: "Professional Hair Treatment",
},
{
@@ -147,7 +147,7 @@ export default function HomePage() {
title: "Cuidados Faciais | Facial Care",
description: "Limpeza profunda, peeling, microagulhagem e tratamentos anti-aging | Professional cleansing, peeling, microneedling and anti-aging treatments",
tag: "Rosto",
imageSrc: "http://img.b2bpic.net/free-photo/woman-cosmetologist-making-beauty-procedures_1303-26026.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-cosmetologist-making-beauty-procedures_1303-26026.jpg?_wi=1",
imageAlt: "Professional Facial Treatment",
},
{
@@ -155,7 +155,7 @@ export default function HomePage() {
title: "Tratamentos Corporais | Body Treatments",
description: "Massagem terapêutica, esfoliação corporal e tratamentos rejuvenescedores | Therapeutic massage, body exfoliation and rejuvenating treatments",
tag: "Corpo",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-composition-spa-objects_23-2148099209.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-composition-spa-objects_23-2148099209.jpg?_wi=1",
imageAlt: "Professional Body Treatment",
},
]}
@@ -175,7 +175,7 @@ export default function HomePage() {
name: "Sofia Martins",
role: "Empresária",
testimonial: "Maison Lure transformou minha rotina de beleza. O atendimento é impecável e os resultados superam as expectativas.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-posing-daylight_1153-7230.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-posing-daylight_1153-7230.jpg?_wi=1",
imageAlt: "Sofia Martins",
icon: Star,
},
@@ -184,7 +184,7 @@ export default function HomePage() {
name: "Joana Costa",
role: "Designer",
testimonial: "A experiência em Maison Lure é como uma sessão de spa. Profissionais altamente qualificados e ambiente relaxante.",
imageSrc: "http://img.b2bpic.net/free-photo/morning-portrait-pretty-woman-relaxing-bed-after-shower-wearing-bath-robe-towel-her-head-drinking-tasty-tea_291049-2693.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/morning-portrait-pretty-woman-relaxing-bed-after-shower-wearing-bath-robe-towel-her-head-drinking-tasty-tea_291049-2693.jpg?_wi=1",
imageAlt: "Joana Costa",
icon: Heart,
},
@@ -193,7 +193,7 @@ export default function HomePage() {
name: "Maria Oliveira",
role: "Advogada",
testimonial: "Encontrei meu lugar de confiança para beleza e bem-estar. Recomendo fortemente Maison Lure a todos!",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-studio-portrait_1303-2284.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-studio-portrait_1303-2284.jpg?_wi=1",
imageAlt: "Maria Oliveira",
icon: Sparkles,
},
@@ -202,7 +202,7 @@ export default function HomePage() {
name: "Carolina Silva",
role: "Médica",
testimonial: "Os tratamentos são de excelente qualidade com produtos premium. Sinto-me valorizada e cuidada em cada visita.",
imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-relaxing-bathtub-with-petals_273609-4782.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-relaxing-bathtub-with-petals_273609-4782.jpg?_wi=1",
imageAlt: "Carolina Silva",
icon: Award,
},

View File

@@ -97,7 +97,7 @@ export default function ServicosPage() {
title: "Coloração Premium | Premium Hair Coloring",
description: "Técnicas avançadas de coloração com produtos de marca internacional. Transformação segura e duradoura para cabelos saudáveis. | Advanced coloring techniques with international brand products. Safe and lasting transformation for healthy hair.",
tag: "Cabelo",
imageSrc: "http://img.b2bpic.net/free-photo/professional-stylist-working-with-client_23-2147769765.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/professional-stylist-working-with-client_23-2147769765.jpg?_wi=2",
imageAlt: "Professional Hair Coloring Treatment",
},
{
@@ -105,7 +105,7 @@ export default function ServicosPage() {
title: "Tratamento Facial Anti-Aging | Anti-Aging Facial Treatment",
description: "Procedimentos dermatológicos com microagulhagem e peeling químico. Revitalização profunda da pele com resultados visíveis. | Dermatological procedures with microneedling and chemical peeling. Deep skin revitalization with visible results.",
tag: "Rosto",
imageSrc: "http://img.b2bpic.net/free-photo/woman-cosmetologist-making-beauty-procedures_1303-26026.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-cosmetologist-making-beauty-procedures_1303-26026.jpg?_wi=2",
imageAlt: "Professional Facial Anti-Aging Treatment",
},
{
@@ -113,7 +113,7 @@ export default function ServicosPage() {
title: "Massagem Terapêutica | Therapeutic Body Massage",
description: "Tratamento corporativo com técnicas orientais e ocidentais. Alívio de tensão muscular e rejuvenescimento da pele. | Corporate treatment with Eastern and Western techniques. Muscle tension relief and skin rejuvenation.",
tag: "Corpo",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-composition-spa-objects_23-2148099209.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-composition-spa-objects_23-2148099209.jpg?_wi=2",
imageAlt: "Professional Body Massage Treatment",
},
]}
@@ -133,7 +133,7 @@ export default function ServicosPage() {
name: "Matilde Santos",
role: "Empresária de Moda",
testimonial: "Os resultados do tratamento facial foram extraordinários! Minha pele ficou radiante e com uma luminosidade que não tinha há anos. Voltei para a próxima sessão!",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-posing-daylight_1153-7230.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-posing-daylight_1153-7230.jpg?_wi=2",
imageAlt: "Matilde Santos",
icon: Star,
},
@@ -142,7 +142,7 @@ export default function ServicosPage() {
name: "Vanessa Lima",
role: "Coach de Bem-Estar",
testimonial: "A massagem terapêutica em Maison Lure é uma experiência transformadora. A equipe é atenciosa e os produtos utilizados são de qualidade premium.",
imageSrc: "http://img.b2bpic.net/free-photo/morning-portrait-pretty-woman-relaxing-bed-after-shower-wearing-bath-robe-towel-her-head-drinking-tasty-tea_291049-2693.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/morning-portrait-pretty-woman-relaxing-bed-after-shower-wearing-bath-robe-towel-her-head-drinking-tasty-tea_291049-2693.jpg?_wi=2",
imageAlt: "Vanessa Lima",
icon: Heart,
},
@@ -151,7 +151,7 @@ export default function ServicosPage() {
name: "Filipa Gomes",
role: "Fotógrafa",
testimonial: "Meu cabelo nunca ficou tão brilhante e saudável! Os profissionais de Maison Lure realmente entendem do que fazem. Recomendo fortemente!",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-studio-portrait_1303-2284.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-studio-portrait_1303-2284.jpg?_wi=2",
imageAlt: "Filipa Gomes",
icon: Sparkles,
},

View File

@@ -49,7 +49,7 @@ export default function AboutPage() {
description="Maison Lure"
subdescription="Lisbon, Portugal - Desde 2015 | Since 2015"
icon={Heart}
imageSrc="http://img.b2bpic.net/free-photo/blurred-bar-with-stools_1203-454.jpg"
imageSrc="http://img.b2bpic.net/free-photo/blurred-bar-with-stools_1203-454.jpg?_wi=2"
imageAlt="Maison Lure Premium Salon"
mediaAnimation="slide-up"
useInvertedBackground={false}
@@ -69,7 +69,7 @@ export default function AboutPage() {
name: "Sofia Martins",
role: "Empresária",
testimonial: "Maison Lure transformou minha rotina de beleza. O atendimento é impecável e os resultados superam as expectativas.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-posing-daylight_1153-7230.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-posing-daylight_1153-7230.jpg?_wi=3",
imageAlt: "Sofia Martins",
icon: Star,
},
@@ -78,7 +78,7 @@ export default function AboutPage() {
name: "Joana Costa",
role: "Designer",
testimonial: "A experiência em Maison Lure é como uma sessão de spa. Profissionais altamente qualificados e ambiente relaxante.",
imageSrc: "http://img.b2bpic.net/free-photo/morning-portrait-pretty-woman-relaxing-bed-after-shower-wearing-bath-robe-towel-her-head-drinking-tasty-tea_291049-2693.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/morning-portrait-pretty-woman-relaxing-bed-after-shower-wearing-bath-robe-towel-her-head-drinking-tasty-tea_291049-2693.jpg?_wi=3",
imageAlt: "Joana Costa",
icon: Heart,
},
@@ -87,7 +87,7 @@ export default function AboutPage() {
name: "Maria Oliveira",
role: "Advogada",
testimonial: "Encontrei meu lugar de confiança para beleza e bem-estar. Recomendo fortemente Maison Lure a todos!",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-studio-portrait_1303-2284.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-studio-portrait_1303-2284.jpg?_wi=3",
imageAlt: "Maria Oliveira",
icon: Sparkles,
},
@@ -96,7 +96,7 @@ export default function AboutPage() {
name: "Carolina Silva",
role: "Médica",
testimonial: "Os tratamentos são de excelente qualidade com produtos premium. Sinto-me valorizada e cuidada em cada visita.",
imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-relaxing-bathtub-with-petals_273609-4782.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-relaxing-bathtub-with-petals_273609-4782.jpg?_wi=2",
imageAlt: "Carolina Silva",
icon: Award,
},