6 Commits

Author SHA1 Message Date
ed8a27480b Update src/app/page.tsx 2026-03-03 10:58:05 +00:00
53b0e44276 Update src/app/page.tsx 2026-03-03 10:57:26 +00:00
0c227406a1 Merge version_3 into main
Merge version_3 into main
2026-03-03 10:26:47 +00:00
e403c9a2c7 Update src/app/page.tsx 2026-03-03 10:26:41 +00:00
bbcd2c104c Update src/app/layout.tsx 2026-03-03 10:26:40 +00:00
8b6f3c64dd Merge version_2 into main
Merge version_2 into main
2026-03-03 10:20:54 +00:00
2 changed files with 6 additions and 15 deletions

View File

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

View File

@@ -10,17 +10,8 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles, Briefcase, Award } from "lucide-react";
import Link from "next/link";
export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Work", id: "/work" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -86,7 +77,7 @@ export default function HomePage() {
<TextSplitAbout
title="Studio Collective"
description={[
"We are a luxury creative studio with over 150+ premium brand transformations across luxury, technology, and lifestyle sectors. For over a decade, we've partnered with discerning clients to craft distinctive visual identities and compelling brand experiences that command market presence.", "Our approach combines deep strategic insights with meticulous craft. We believe exceptional work requires understanding both the aspirations of our clients and the precise needs of their audiences. Each project is an opportunity to push creative boundaries while delivering measurable business impact.", "We work exclusively with clients who share our commitment to quality and innovation. Our selective engagement model ensures we can dedicate the depth of expertise and attention that premium projects demand."]}
"We are a luxury creative studio dedicated to transforming brands through sophisticated design and strategic thinking. For over a decade, we've partnered with discerning clients across industries to craft distinctive visual identities and compelling brand experiences.", "Our approach combines deep strategic insights with meticulous craft. We believe exceptional work requires understanding both the aspirations of our clients and the precise needs of their audiences. Each project is an opportunity to push creative boundaries while delivering measurable business impact.", "We work exclusively with clients who share our commitment to quality and innovation. Our selective engagement model ensures we can dedicate the depth of expertise and attention that premium projects demand."]}
buttons={[
{ text: "Our Services", href: "/services" },
{ text: "Let's Talk", href: "/contact" },
@@ -107,15 +98,15 @@ export default function HomePage() {
tagAnimation="slide-up"
features={[
{
id: "branding", label: "Branding", title: "Complete Brand Identity Systems", items: [
id: "branding", label: "Branding", title: "Build Market Authority with Complete Brand Identity Systems", items: [
"Logo design and mark systems", "Brand guidelines and documentation", "Visual identity frameworks", "Color and typography systems"],
},
{
id: "design", label: "Design", title: "Strategic Visual Communication", items: [
id: "design", label: "Design", title: "Drive Audience Engagement with Strategic Visual Communication", items: [
"Packaging design", "Marketing collateral", "Environmental design", "Print and digital design"],
},
{
id: "direction", label: "Direction", title: "Creative Direction & Strategy", items: [
id: "direction", label: "Direction", title: "Accelerate Brand Growth through Creative Direction & Strategy", items: [
"Campaign strategy and development", "Art direction", "Brand positioning", "Creative consulting"],
},
]}
@@ -217,4 +208,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}