4 Commits

Author SHA1 Message Date
bcd75876bf Update src/app/page.tsx 2026-01-06 12:18:39 +00:00
b6624129a1 Update src/app/page.tsx 2026-01-06 11:41:42 +00:00
e8d4eb6534 Update src/app/layout.tsx 2026-01-06 11:41:41 +00:00
e4b589e92a Update src/app/globals.css 2026-01-06 11:41:40 +00:00
3 changed files with 17 additions and 17 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #ffffff;; --background: #000000;;
--card: #fafafa;; --card: #1a1a1a;;
--foreground: #000000;; --foreground: #ffff00;;
--primary-cta: #0066ff;; --primary-cta: #ffff00;;
--secondary-cta: #ffffff;; --secondary-cta: #1a1a1a;;
--accent: #e5e5e5;; --accent: #ffff00;;
--background-accent: #f5f5f5;; --background-accent: #1a1a1a;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

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

View File

@@ -35,7 +35,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero" style={{ backgroundColor: "#ff8c42" }}>
<HeroBillboardMetrics <HeroBillboardMetrics
title="Discover Exceptional Talent" title="Discover Exceptional Talent"
description="Krasotka is Russia's premier model agency, connecting visionary brands with extraordinary talent. Elevating careers and creating unforgettable moments." description="Krasotka is Russia's premier model agency, connecting visionary brands with extraordinary talent. Elevating careers and creating unforgettable moments."
@@ -66,7 +66,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about" style={{ backgroundColor: "#15ad59" }}>
<TestimonialAboutCard <TestimonialAboutCard
tag="Our Legacy" tag="Our Legacy"
title="We don't just represent models—we transform careers and create fashion history." title="We don't just represent models—we transform careers and create fashion history."
@@ -79,7 +79,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="portfolio" data-section="portfolio"> <div id="portfolio" data-section="portfolio" style={{ backgroundColor: "#ff8c42" }}>
<FeatureCardFourteen <FeatureCardFourteen
title="Featured Models" title="Featured Models"
description="Explore our exclusive roster of talented models available for bookings" description="Explore our exclusive roster of talented models available for bookings"
@@ -106,7 +106,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="services" data-section="services"> <div id="services" data-section="services" style={{ backgroundColor: "#15ad59" }}>
<ProductCardOne <ProductCardOne
title="Our Services" title="Our Services"
description="Comprehensive talent management solutions for models and brands" description="Comprehensive talent management solutions for models and brands"
@@ -132,7 +132,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="team" data-section="team"> <div id="team" data-section="team" style={{ backgroundColor: "#ff8c42" }}>
<TeamCardOne <TeamCardOne
title="Meet Our Team" title="Meet Our Team"
description="Industry veterans dedicated to advancing model careers and brand success" description="Industry veterans dedicated to advancing model careers and brand success"
@@ -158,7 +158,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials" style={{ backgroundColor: "#15ad59" }}>
<TestimonialCardThirteen <TestimonialCardThirteen
title="What Our Clients Say" title="What Our Clients Say"
description="Hear from brands and models who've experienced Krasotka excellence" description="Hear from brands and models who've experienced Krasotka excellence"
@@ -196,7 +196,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact" style={{ backgroundColor: "#ff8c42" }}>
<ContactCenter <ContactCenter
tag="Get In Touch" tag="Get In Touch"
title="Ready to Book or Join Krasotka?" title="Ready to Book or Join Krasotka?"
@@ -209,7 +209,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer" style={{ backgroundColor: "#15ad59" }}>
<FooterSocial <FooterSocial
logoText="Krasotka" logoText="Krasotka"
columns={[ columns={[
@@ -272,4 +272,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }