Files
df868eb3-b3c9-4a00-986f-478…/src/app/work/page.tsx
2026-03-03 04:13:25 +00:00

145 lines
7.1 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { ArrowRight } from "lucide-react";
export default function WorkPage() {
const navItems = [
{ name: "Work", id: "/work" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Projects", id: "/work" },
];
const footerColumns = [
{
items: [
{ label: "Work", href: "/work" },
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
],
},
{
items: [
{ label: "Contact", href: "/contact" },
{ label: "Creative Direction", href: "/services" },
{ label: "Projects", href: "/work" },
],
},
{
items: [
{ label: "Email", href: "mailto:hello@visionfirst.studio" },
{ label: "Instagram", href: "https://instagram.com/visionfirst" },
{ label: "LinkedIn", href: "https://linkedin.com/company/visionfirst" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="largeSmallSizeMediumTitles"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="double-inset"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems}
brandName="VISION FIRST"
bottomLeftText="Concept before image"
bottomRightText="hello@visionfirst.studio"
/>
</div>
<div id="work" data-section="work">
<ProductCardOne
products={[
{
id: "1", name: "Worn by the City", price: "Music Visual Identity", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3EMGqlmy084kV3KwAVtpJqrq/music-video-visual-concept-or-album-cove-1772510963993-fbcb646c.jpg?_wi=4", imageAlt: "Worn by the City music visual concept"},
{
id: "2", name: "Nocturne Campaign", price: "Advertising Direction", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3EMGqlmy084kV3KwAVtpJqrq/advertising-campaign-visual-concept-bold-1772510961006-578598a3.png?_wi=4", imageAlt: "Nocturne advertising campaign visual direction"},
{
id: "3", name: "Synthetic Dreams", price: "Cinematic Production", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3EMGqlmy084kV3KwAVtpJqrq/ai-cinematic-production-storyboard-or-ke-1772510960910-0b25ce0f.png?_wi=4", imageAlt: "Synthetic Dreams AI cinematic video"},
]}
title="Selected Work"
description="Curated projects demonstrating strategic creative direction across music, film, and advertising."
tag="PORTFOLIO"
tagAnimation="none"
animationType="none"
gridVariant="uniform-all-items-equal"
textboxLayout="default"
useInvertedBackground={false}
ariaLabel="Vision First selected work and portfolio"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
testimonials={[
{
id: "1", name: "Marcus Chen", handle: "@marcuschenvisuals", testimonial:
"Vision First elevated our visual identity from concept to cultural statement. Their strategic approach to art direction transformed how we present our work.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3EMGqlmy084kV3KwAVtpJqrq/professional-headshot-of-a-music-artist--1772510960853-93c61614.png?_wi=3", imageAlt: "Marcus Chen, Music Director"},
{
id: "2", name: "Elena Rodriguez", handle: "@elenarpro", testimonial:
"Working with Vision First was a masterclass in creative discipline. They understand that the strongest visuals emerge from strategy, not decoration.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3EMGqlmy084kV3KwAVtpJqrq/professional-headshot-of-a-film-producer-1772510960455-e933b059.png?_wi=3", imageAlt: "Elena Rodriguez, Film Producer"},
{
id: "3", name: "David Winters", handle: "@davidwintersbrand", testimonial:
"Their creative direction brought architecture and narrative to our advertising. Every decision was purposeful, every visual element served the strategy.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3EMGqlmy084kV3KwAVtpJqrq/professional-headshot-of-a-brand-strateg-1772510960762-2c1b8cf4.png?_wi=3", imageAlt: "David Winters, Brand Strategist"},
]}
showRating={true}
animationType="none"
title="Trusted by Creative Leaders"
description="Collaborations with artists, directors, and brands who demand strategic vision and refined execution."
textboxLayout="default"
useInvertedBackground={false}
tag="COLLABORATIONS"
tagAnimation="none"
carouselMode="buttons"
ariaLabel="Vision First client testimonials and collaborations"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Let's Collaborate"
tagIcon={ArrowRight}
tagAnimation="none"
title="For Creative Collaborations and Cultural Projects"
description="We develop visual concepts and creative direction for projects rooted in strategy and narrative intelligence. If your vision requires refined execution and strategic thinking, let's connect."
buttons={[
{ text: "Contact Studio", href: "mailto:hello@visionfirst.studio" },
{ text: "Explore More", href: "/work" },
]}
buttonAnimation="none"
background={{ variant: "plain" }}
useInvertedBackground={false}
ariaLabel="Vision First contact call to action"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={footerColumns}
logoText="VISION FIRST"
ariaLabel="Vision First footer navigation"
/>
</div>
</ThemeProvider>
);
}