Initial commit

This commit is contained in:
dk
2026-01-19 19:50:17 +02:00
commit 96bf822987
263 changed files with 50235 additions and 0 deletions

96
src/app/work/page.tsx Normal file
View File

@@ -0,0 +1,96 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import Link from "next/link";
export default function WorkPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="largeSmallSizeLargeTitles"
background="none"
cardStyle="outline"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="StrategyHub"
navItems={[
{ name: "Services", id: "/services" },
{ name: "Work", id: "/work" },
{ name: "Team", id: "/team" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="work" data-section="work">
<ProductCardOne
title="Featured Case Studies"
description="Real results from real clients. See how we've helped brands transform their market presence and achieve exceptional growth."
tag="Success Stories"
products={[
{
id: "case-1",
name: "E-commerce Brand: 340% Revenue Growth",
price: "12-Month Campaign",
imageSrc: "https://img.b2bpic.net/free-photo/success-new-business-launch-plan-concept_53876-133970.jpg"
},
{
id: "case-2",
name: "SaaS Startup: 450% User Acquisition",
price: "6-Month Strategy",
imageSrc: "https://img.b2bpic.net/free-photo/office-workers-working-together-as-team_23-2149310881.jpg"
},
{
id: "case-3",
name: "Product Launch: Market Leader Position",
price: "9-Month Execution",
imageSrc: "https://img.b2bpic.net/free-vector/flat-employee-appreciation-day-vertical-poster-template_23-2149272005.jpg"
}
]}
gridVariant="uniform-all-items-equal"
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground="noInvert"
/>
</div>
<FooterLogoEmphasis
logoText="StrategyHub"
columns={[
{
items: [
{ label: "Services", href: "/services" },
{ label: "Case Studies", href: "/work" },
{ label: "Team", href: "/team" }
]
},
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
{ label: "Blog", href: "#blog" }
]
},
{
items: [
{ label: "Privacy Policy", href: "#privacy" },
{ label: "Terms of Service", href: "#terms" },
{ label: "Legal", href: "#legal" }
]
}
]}
/>
</ThemeProvider>
);
}