Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-17 19:46:51 +00:00
4 changed files with 65 additions and 22 deletions

View File

@@ -95,7 +95,7 @@ export default function GalleryPage() {
name: "Целулит редукция - 8 сесии",
price: "Резултат видим",
variant: "Бедра и ханша",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159257.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159257.jpg?_wi=2",
imageAlt: "Преди и след - целулит редукция",
},
{
@@ -103,7 +103,7 @@ export default function GalleryPage() {
name: "Оформяне на бедра - 10 сесии",
price: "Видими резултати",
variant: "Цялата фигура",
imageSrc: "http://img.b2bpic.net/free-photo/women-celebrating-all-skin-tones_23-2149179651.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/women-celebrating-all-skin-tones_23-2149179651.jpg?_wi=2",
imageAlt: "Преди и след - оформяне на тялото",
},
{
@@ -111,7 +111,7 @@ export default function GalleryPage() {
name: "Омладяване на кожата - 6 сесии",
price: "Тонус на кожата",
variant: "Деколте и ръце",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-posing-with-bare-shoulders_23-2148364786.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-posing-with-bare-shoulders_23-2148364786.jpg?_wi=2",
imageAlt: "Преди и след - омладяване",
},
{
@@ -119,7 +119,7 @@ export default function GalleryPage() {
name: "Лимфен дренаж - 5 сесии",
price: "Намалял отоци",
variant: "Детоксикация",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-studio-portrait_23-2149324787.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-studio-portrait_23-2149324787.jpg?_wi=2",
imageAlt: "Преди и след - лимфен дренаж",
},
{
@@ -127,7 +127,7 @@ export default function GalleryPage() {
name: "Антицелулитна терапия - 12 сесии",
price: "Хидратирана кожа",
variant: "Дълбоко лечение",
imageSrc: "http://img.b2bpic.net/free-photo/african-woman-is-measuring-her-waist-with-centimeter-has-happy-look_8353-10009.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/african-woman-is-measuring-her-waist-with-centimeter-has-happy-look_8353-10009.jpg?_wi=2",
imageAlt: "Преди и след - интензивна терапия",
},
{
@@ -135,7 +135,7 @@ export default function GalleryPage() {
name: "Комбинирана терапия - 15 сесии",
price: "Трансформация",
variant: "Мултиплекс обработка",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-patient-looking-radiography_23-2148816215.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-patient-looking-radiography_23-2148816215.jpg?_wi=2",
imageAlt: "Преди и след - комбинирана терапия",
},
]}

View File

@@ -1,24 +1,65 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 { Manrope } 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 manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "LPG Studio - Ендермология и LPG Масаж в София",
description: "Откройте революционния LPG масаж за целулит редукция, оформяне на тялото и омладяване на кожата. Професионален уход, видими резултати, 500+ доволни клиентки.",
keywords: "LPG масаж, ендермология, целулит редукция, оформяне на тялото, лимфен дренаж, массаж София, красота, спа",
metadataBase: new URL("https://lpgstudio.bg"),
alternates: {
canonical: "https://lpgstudio.bg",
},
openGraph: {
title: "LPG Studio - Ваше място за красота и благосъстояние",
description: "Професионален LPG масаж и ендермология. Целулит редукция, оформяне на тялото, омладяване на кожата.",
url: "https://lpgstudio.bg",
siteName: "LPG Studio",
images: [
{
url: "http://img.b2bpic.net/free-photo/warm-oil-palms-client-legs-pre-massage-ritual-daily-selfcare_169016-69389.jpg",
alt: "LPG Studio - Professional Beauty Treatment",
width: 1200,
height: 630,
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "LPG Studio - Ендермология и Массаж",
description: "Откройте силата на LPG третирането за красота и благосъстояние",
images: [
"http://img.b2bpic.net/free-photo/woman-face-massage-mirror-with-gua-sha_23-2149349077.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +68,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +82,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -224,7 +224,7 @@ export default function HomePage() {
tag="Професионален уход"
tagIcon={Zap}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/woman-making-beauty-procedures-beauty-salon_1303-16727.jpg"
imageSrc="http://img.b2bpic.net/free-photo/woman-making-beauty-procedures-beauty-salon_1303-16727.jpg?_wi=1"
imageAlt="LPG професионално оборудване"
mediaAnimation="slide-up"
useInvertedBackground={true}
@@ -360,7 +360,7 @@ export default function HomePage() {
name: "Целулит редукция - 8 сесии",
price: "Резултат видим",
variant: "Бедра и ханша",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159257.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159257.jpg?_wi=1",
imageAlt: "Преди и след - целулит редукция",
},
{
@@ -368,7 +368,7 @@ export default function HomePage() {
name: "Оформяне на бедра - 10 сесии",
price: "Видими резултати",
variant: "Цялата фигура",
imageSrc: "http://img.b2bpic.net/free-photo/women-celebrating-all-skin-tones_23-2149179651.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/women-celebrating-all-skin-tones_23-2149179651.jpg?_wi=1",
imageAlt: "Преди и след - оформяне на тялото",
},
{
@@ -376,7 +376,7 @@ export default function HomePage() {
name: "Омладяване на кожата - 6 сесии",
price: "Тонус на кожата",
variant: "Деколте и ръце",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-posing-with-bare-shoulders_23-2148364786.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-posing-with-bare-shoulders_23-2148364786.jpg?_wi=1",
imageAlt: "Преди и след - омладяване",
},
{
@@ -384,7 +384,7 @@ export default function HomePage() {
name: "Лимфен дренаж - 5 сесии",
price: "Намалял отоци",
variant: "Детоксикация",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-studio-portrait_23-2149324787.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-studio-portrait_23-2149324787.jpg?_wi=1",
imageAlt: "Преди и след - лимфен дренаж",
},
{
@@ -392,7 +392,7 @@ export default function HomePage() {
name: "Антицелулитна терапия - 12 сесии",
price: "Хидратирана кожа",
variant: "Дълбоко лечение",
imageSrc: "http://img.b2bpic.net/free-photo/african-woman-is-measuring-her-waist-with-centimeter-has-happy-look_8353-10009.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/african-woman-is-measuring-her-waist-with-centimeter-has-happy-look_8353-10009.jpg?_wi=1",
imageAlt: "Преди и след - интензивна терапия",
},
{
@@ -400,7 +400,7 @@ export default function HomePage() {
name: "Комбинирана терапия - 15 сесии",
price: "Трансформация",
variant: "Мултиплекс обработка",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-patient-looking-radiography_23-2148816215.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-patient-looking-radiography_23-2148816215.jpg?_wi=1",
imageAlt: "Преди и след - комбинирана терапия",
},
]}

View File

@@ -85,7 +85,7 @@ export default function ServicesPage() {
tag="Професионален уход"
tagIcon={Zap}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/woman-making-beauty-procedures-beauty-salon_1303-16727.jpg"
imageSrc="http://img.b2bpic.net/free-photo/woman-making-beauty-procedures-beauty-salon_1303-16727.jpg?_wi=2"
imageAlt="LPG професионално оборудване"
mediaAnimation="slide-up"
useInvertedBackground={true}