Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d826d398b6 | |||
| 8dac4d88c1 | |||
| 4c870a71d5 | |||
| 72dbafd693 | |||
| 92874dbdce | |||
| 45c6b8aec9 | |||
| 5a77ec7490 | |||
| 6b48e12047 | |||
| 24b98f48bc | |||
| 7a4d0e7c3b |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #1d1010;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #FFFFFF;
|
||||
--primary-cta: #FFD700;
|
||||
--primary-cta-text: #000000;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--secondary-cta-text: #FFFFFF;
|
||||
--accent: #FFD700;
|
||||
--background-accent: #333333;
|
||||
--background: #000000;
|
||||
--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);
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user