11 Commits

Author SHA1 Message Date
077973f2ea Update src/app/page.tsx 2026-01-06 15:50:23 +00:00
0d9b268711 Update src/app/globals.css 2026-01-06 15:50:22 +00:00
fff05e2889 Update src/app/page.tsx 2026-01-06 15:37:40 +00:00
d4fb6b9d4f Update src/app/page.tsx 2026-01-06 14:11:35 +00:00
2dc6a7ee5a Update src/app/page.tsx 2026-01-06 13:52:10 +00:00
4a5acb5b5b Update src/app/page.tsx 2026-01-06 13:29:22 +00:00
99b0ad47f2 Update src/app/globals.css 2026-01-06 13:29:21 +00:00
7461dfe12d Update src/app/page.tsx 2026-01-06 13:17:33 +00:00
baf5a00ef5 Update src/app/page.tsx 2026-01-06 13:14:50 +00:00
2402e8ee90 Update src/app/page.tsx 2026-01-06 13:08:30 +00:00
d539b758f7 Update src/app/layout.tsx 2026-01-06 13:08:29 +00:00
3 changed files with 16 additions and 10 deletions

View File

@@ -7,7 +7,7 @@
--background: #f8faff;;
--card: #f0f4ff;;
--foreground: #1a1a2e;;
--primary-cta: #3b82f6;;
--primary-cta: #ff8c42;;
--secondary-cta: #ffffff;;
--accent: #d5c6ff;;
--background-accent: #b394fa;;

View File

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

View File

@@ -42,7 +42,7 @@ export default function LandingPage() {
/>
</div>
<div id="hero" data-section="hero">
<div id="hero" data-section="hero" style={{ backgroundColor: "#f0e6ff" }}>
<HeroBillboardCarouselSplit
title="Discover Premium Talent with Sosibiby"
mediaItems={[
@@ -62,7 +62,7 @@ export default function LandingPage() {
/>
</div>
<div id="about" data-section="about">
<div id="about" data-section="about" style={{ backgroundColor: "#e6f0ff" }}>
<MediaAbout
title="Representing Excellence in Modeling"
description="Sosibiby is a premier modeling agency dedicated to discovering, developing, and promoting the most talented models in the industry. With over a decade of experience, we connect exceptional talent with world-class opportunities in fashion, beauty, commercial, and entertainment sectors. Our commitment to professionalism and personalized representation sets us apart."
@@ -76,7 +76,7 @@ export default function LandingPage() {
/>
</div>
<div id="portfolio" data-section="portfolio">
<div id="portfolio" data-section="portfolio" style={{ backgroundColor: "#a78bfa" }}>
<ProductCardOne
title="Featured Models"
description="Explore our exclusive roster of talented professionals ready for your next project"
@@ -109,7 +109,7 @@ export default function LandingPage() {
/>
</div>
<div id="team" data-section="team">
<div id="team" data-section="team" style={{ backgroundColor: "#e6d5ff" }}>
<TeamCardTen
title="Meet the Sosibiby Team"
tag="Leadership"
@@ -122,6 +122,12 @@ export default function LandingPage() {
},
{
id: "3", name: "Sophia Petrov", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767704140616-gerpgiei.jpg", imageAlt: "Sophia Petrov, Booking Director"
},
{
id: "4", name: "Aisha Okonkwo", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767704139352-zzdkijiu.jpg", imageAlt: "Aisha Okonkwo, Marketing Director"
},
{
id: "5", name: "David Lee", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767704139921-3qkxpvn3.jpg", imageAlt: "David Lee, Operations Manager"
}
]}
memberVariant="default"
@@ -129,7 +135,7 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<div id="testimonials" data-section="testimonials" style={{ backgroundColor: "#fff0e6" }}>
<TestimonialCardEleven
title="Client Success Stories"
description="Hear from photographers, brands, and industry leaders who trust Sosibiby talent"
@@ -159,7 +165,7 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<div id="contact" data-section="contact" style={{ backgroundColor: "#ffe6d5" }}>
<ContactCenter
tag="Get Started"
title="Join the Sosibiby Family"
@@ -171,7 +177,7 @@ export default function LandingPage() {
/>
</div>
<div id="footer" data-section="footer">
<div id="footer" data-section="footer" style={{ backgroundColor: "#f0ebff" }}>
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767704145507-m665a9i0.jpg"
imageAlt="Sosibiby runway models"
@@ -204,4 +210,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}