2 Commits

Author SHA1 Message Date
2dcdfc82cc Update src/app/page.tsx 2026-01-29 13:27:38 +00:00
f1beafd184 Update src/app/layout.tsx 2026-01-29 13:27:38 +00:00
2 changed files with 36 additions and 3 deletions

View File

@@ -31,6 +31,7 @@ export default function KrasotkaAgencyPage() {
navItems={[ navItems={[
{name: "Home", id: "home"}, {name: "Home", id: "home"},
{name: "Models", id: "models"}, {name: "Models", id: "models"},
{name: "Products", id: "products"},
{name: "Services", id: "services"}, {name: "Services", id: "services"},
{name: "About", id: "about"}, {name: "About", id: "about"},
{name: "Contact", id: "contact"} {name: "Contact", id: "contact"}
@@ -94,6 +95,37 @@ export default function KrasotkaAgencyPage() {
/> />
</div> </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"> <div id="about" data-section="about">
<TextAbout <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" 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: [ items: [
{label: "Models", href: "models"}, {label: "Models", href: "models"},
{label: "Products", href: "products"},
{label: "Services", href: "services"}, {label: "Services", href: "services"},
{label: "About", href: "about"} {label: "About", href: "about"}
] ]
@@ -197,7 +230,7 @@ export default function KrasotkaAgencyPage() {
{ {
items: [ items: [
{label: "Casting Info", href: "#"}, {label: "Casting Info", href: "#"},
{label: "Blog", href: "#"}, {label: "Blog", href: "blog"},
{label: "Opportunities", href: "#"} {label: "Opportunities", href: "#"}
] ]
}, },