12 Commits

Author SHA1 Message Date
d826d398b6 Update src/app/page.tsx 2026-04-22 13:07:44 +00:00
8dac4d88c1 Merge version_5 into main
Merge version_5 into main
2026-04-22 13:06:18 +00:00
4c870a71d5 Update src/app/tarifs/page.tsx 2026-04-22 13:06:15 +00:00
72dbafd693 Merge version_5 into main
Merge version_5 into main
2026-04-22 13:05:48 +00:00
92874dbdce Update src/app/tarifs/page.tsx 2026-04-22 13:05:45 +00:00
45c6b8aec9 Merge version_4 into main
Merge version_4 into main
2026-04-22 13:00:27 +00:00
5a77ec7490 Update theme colors 2026-04-22 13:00:24 +00:00
6b48e12047 Merge version_3 into main
Merge version_3 into main
2026-04-22 13:00:19 +00:00
89e0f69f6c Update theme colors 2026-04-22 13:00:16 +00:00
24b98f48bc Merge version_2 into main
Merge version_2 into main
2026-04-22 12:59:51 +00:00
06d3cd0352 Update theme colors 2026-04-22 12:59:48 +00:00
7a4d0e7c3b Merge version_1 into main
Merge version_1 into main
2026-04-22 12:57:41 +00:00
3 changed files with 32 additions and 22 deletions

View File

@@ -45,8 +45,8 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogo
logoText="JT Production And Visual"
description="Production vidéo haut de gamme pour artistes et marques visionnaires."
logoText="Propulsez Votre Identité Visuelle"
description="Transformez votre image avec une production vidéo d'élite, conçue pour capter l'attention et sublimer votre signature artistique."
buttons={[
{ text: "Découvrir", href: "#services" },
{ text: "Contact", href: "/contact" },
@@ -146,4 +146,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -11,14 +11,14 @@
--background-accent: #ffffff; */
--background: #000000;
--card: #1a1a1a;
--foreground: #FFFFFF;
--primary-cta: #FFD700;
--primary-cta-text: #000000;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #FFFFFF;
--accent: #FFD700;
--background-accent: #333333;
--card: #1f1f40;
--foreground: #ffffff;
--primary-cta: #ffffff;
--primary-cta-text: #0a051a;
--secondary-cta: #0d0d2b;
--secondary-cta-text: #d4d4f6;
--accent: #3d2880;
--background-accent: #663cff;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -3,11 +3,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import { CheckCircle } from "lucide-react";
export default function LandingPage() {
export default function TarifsPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -37,15 +38,24 @@ export default function LandingPage() {
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardSixteen
<div id="pricing" data-section="pricing">
<PricingCardEight
animationType="slide-up"
title="Nos Tarifs & Packages"
description="Des solutions sur mesure pour artistes et professionnels."
textboxLayout="default"
useInvertedBackground={false}
title="Packages"
description="Nos offres tarifaires."
positiveCard={{ items: ["Pack Gold", "Pack Platinum"] }}
negativeCard={{ items: ["Pack Silver", "Starter"] }}
plans={[
{
id: "artist-pack", badge: "Artistes", price: "Sur Devis", subtitle: "Pour vos projets musicaux", features: ["Clip Officiel 4K", "Shooting Photo Promo", "Stratégie de sortie", "Distribution Digitale"],
buttons: [{ text: "Contactez-nous", href: "/contact" }]
},
{
id: "pro-pack", badge: "Professionnels", badgeIcon: CheckCircle,
price: "Sur Devis", subtitle: "Contenu corporate & brand", features: ["Production Événementielle", "Pub Lifestyle", "Hôtellerie incluse", "Montage & Étalonnage Pro"],
buttons: [{ text: "Contactez-nous", href: "/contact" }]
}
]}
/>
</div>
@@ -53,8 +63,8 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{ variant: "plain" }}
text="Sur mesure."
buttons={[{ text: "Devis", href: "/contact" }]}
text="Conditions de réservation : Réservation sous 30 jours, déplacement facturé selon distance. Devis personnalisé après étude de votre brief."
buttons={[{ text: "Demander un devis", href: "/contact" }]}
/>
</div>
@@ -71,4 +81,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}