diff --git a/src/pages/PricingPage.tsx b/src/pages/PricingPage.tsx index 1ef2598..94ff221 100644 --- a/src/pages/PricingPage.tsx +++ b/src/pages/PricingPage.tsx @@ -1,43 +1,19 @@ -import Button from "@/components/ui/Button"; -import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; -import TextAnimation from "@/components/ui/TextAnimation"; -import ImageOrVideo from "@/components/ui/ImageOrVideo"; -import ScrollReveal from "@/components/ui/ScrollReveal"; -import AvatarGroup from "@/components/ui/AvatarGroup"; -import { Check } from "lucide-react"; -import GridOrCarousel from "@/components/ui/GridOrCarousel"; +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in .//sections/.tsx. Edit the section +// files directly. Non-block content (wrappers, non-inlinable sections) is +// preserved inline; extracted section blocks become refs. -export default function PricingPage() { +import React from 'react'; +import HeroBillboardSection from './PricingPage/sections/HeroBillboard'; +import PricingSplitCardsSection from './PricingPage/sections/PricingSplitCards'; +import PricingSimpleCardsSection from './PricingPage/sections/PricingSimpleCards'; + +export default function PricingPage(): React.JSX.Element { return ( - <> -

Service Menu

-

Services & Pricing

Natural Care

From €65per session

Enhance your natural nails with our strengthening gel overlays and meticulous cuticle care.

Included Services

Japanese manicure techniques
-
Strengthening gel overlay
-
Precision cuticle care
-
Custom color application
-
Nourishing oil treatment
-

Extensions

From €95per session

Flawless, durable nail extensions crafted with architectural precision for a natural look.

Included Services

Custom length and shape
-
Architectural gel building
-
Seamless cuticle blending
-
Minimalist art options
-
Long-lasting finish
-

Bridal

From €120per session

Bespoke nail artistry designed to complement your special day with serene elegance.

Included Services

In-depth consultation
-
Trial session available
-
Intricate minimalist art
-
Premium gel products
-
Relaxing hand massage
-

Services

Gel Manicure

From €65A gentle, long-lasting gel application focusing on natural nail health.
Detailed cuticle care
-
Strengthening base coat
-
Flawless color application
-
Nourishing oil finish
-

Extensions

From €95Precision-sculpted extensions for elegant length and perfect structure.
Custom form fitting
-
Architectural shaping
-
Minimalist finish
-
Up to 4 weeks wear
-

Wedding Nails

From €120Bespoke nail artistry for your most important day, tailored to your style.
In-depth consultation
-
Custom color mixing
-
Delicate nail art
-
Premium care products
+<> + + + ); } diff --git a/src/pages/PricingPage/sections/HeroBillboard.tsx b/src/pages/PricingPage/sections/HeroBillboard.tsx new file mode 100644 index 0000000..3dd912a --- /dev/null +++ b/src/pages/PricingPage/sections/HeroBillboard.tsx @@ -0,0 +1,15 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "HeroBillboard" section. + +import React from 'react'; +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; + +export default function HeroBillboardSection(): React.JSX.Element { + return ( +

Service Menu

+ ); +} diff --git a/src/pages/PricingPage/sections/PricingSimpleCards.tsx b/src/pages/PricingPage/sections/PricingSimpleCards.tsx new file mode 100644 index 0000000..9e7e0f0 --- /dev/null +++ b/src/pages/PricingPage/sections/PricingSimpleCards.tsx @@ -0,0 +1,18 @@ +// Created by add_section_from_catalog (ProductVariantCards). + +import React from 'react'; +import ProductVariantCards from '@/components/sections/product/ProductVariantCards'; + +export default function PricingSimpleCardsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/PricingPage/sections/PricingSplitCards.tsx b/src/pages/PricingPage/sections/PricingSplitCards.tsx new file mode 100644 index 0000000..0a267db --- /dev/null +++ b/src/pages/PricingPage/sections/PricingSplitCards.tsx @@ -0,0 +1,28 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "PricingSplitCards" section. + +import React from 'react'; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import { Check } from "lucide-react"; + +export default function PricingSplitCardsSection(): React.JSX.Element { + return ( +

Services & Pricing

Natural Care

From €65per session

Enhance your natural nails with our strengthening gel overlays and meticulous cuticle care.

Included Services

Japanese manicure techniques
+
Strengthening gel overlay
+
Precision cuticle care
+
Custom color application
+
Nourishing oil treatment
+

Extensions

From €95per session

Flawless, durable nail extensions crafted with architectural precision for a natural look.

Included Services

Custom length and shape
+
Architectural gel building
+
Seamless cuticle blending
+
Minimalist art options
+
Long-lasting finish
+

Bridal

From €120per session

Bespoke nail artistry designed to complement your special day with serene elegance.

Included Services

In-depth consultation
+
Trial session available
+
Intricate minimalist art
+
Premium gel products
+
Relaxing hand massage
+ ); +}