Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-01-29 13:27:43 +00:00
2 changed files with 36 additions and 3 deletions

View File

@@ -1264,4 +1264,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -31,6 +31,7 @@ export default function KrasotkaAgencyPage() {
navItems={[
{name: "Home", id: "home"},
{name: "Models", id: "models"},
{name: "Products", id: "products"},
{name: "Services", id: "services"},
{name: "About", id: "about"},
{name: "Contact", id: "contact"}
@@ -94,6 +95,37 @@ export default function KrasotkaAgencyPage() {
/>
</div>
<div id="products" data-section="products">
<ProductCardFour
title="Our Products Collection"
description="Explore our curated selection of exclusive products and merchandise from our featured models and brand partnerships"
tag="Shop Now"
tagIcon={Sparkles}
buttons={[
{text: "Browse All", href: "#"},
{text: "View Catalog", href: "#"}
]}
textboxLayout="default"
useInvertedBackground="noInvert"
products={[
{
id: "product-1", name: "Signature Model Portfolio Book", price: "$89.00", variant: "Photography, Premium Print", imageSrc: "https://img.b2bpic.net/free-photo/smiling-portrait-studio-woman_1303-2289.jpg", imageAlt: "Premium portfolio book"
},
{
id: "product-2", name: "Fashion Lookbook Series", price: "$129.00", variant: "Digital, Seasonal Collections", imageSrc: "https://img.b2bpic.net/free-photo/attractive-blond-male-dressed-suit-dark-grey-background_613910-14130.jpg", imageAlt: "Fashion lookbook digital series"
},
{
id: "product-3", name: "Professional Headshots Package", price: "$199.00", variant: "Studio Session, 50+ Images", imageSrc: "https://img.b2bpic.net/free-photo/portrait-smiley-woman_23-2149022644.jpg", imageAlt: "Professional headshots package"
},
{
id: "product-4", name: "Styling Consultation & Wardrobe", price: "$249.00", variant: "Personal, One-on-One Session", imageSrc: "https://img.b2bpic.net/free-photo/blond-female-long-red-dress-motion-studio-shoot_613910-309.jpg", imageAlt: "Styling consultation service"
}
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
/>
</div>
<div id="about" data-section="about">
<TextAbout
title="Founded in 2015, Krasotka has become Eastern Europe's leading models agency, representing top-tier talent and connecting them with prestigious international brands, fashion houses, and major advertising campaigns"
@@ -190,6 +222,7 @@ export default function KrasotkaAgencyPage() {
{
items: [
{label: "Models", href: "models"},
{label: "Products", href: "products"},
{label: "Services", href: "services"},
{label: "About", href: "about"}
]
@@ -197,7 +230,7 @@ export default function KrasotkaAgencyPage() {
{
items: [
{label: "Casting Info", href: "#"},
{label: "Blog", href: "#"},
{label: "Blog", href: "blog"},
{label: "Opportunities", href: "#"}
]
},
@@ -213,4 +246,4 @@ export default function KrasotkaAgencyPage() {
</div>
</ThemeProvider>
);
}
}