Compare commits
29 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cfb9e88119 | |||
| 72787539d6 | |||
| 3701afa591 | |||
| f73dea3238 | |||
| e897b38d63 | |||
| 0acd4e501e | |||
| a3e2b2aa15 | |||
| 3bffe40bd0 | |||
| f2d38cd99a | |||
| 26aa464f40 | |||
| 870bd48380 | |||
| 4001c53f28 | |||
| b30172ed4d | |||
| f4160b7120 | |||
| 6000101bbc | |||
| bdd83cd936 | |||
| 8494e5818e | |||
| e9e5bf7968 | |||
| a385b87ff2 | |||
| e659d40abc | |||
| af90352361 | |||
| 1e084924cb | |||
| 5eec5258bf | |||
| 61603a34a4 | |||
| 1237c19c29 | |||
| 923c4112fe | |||
| c80911d164 | |||
| a419659a13 | |||
| 94e66870c6 |
@@ -6,23 +6,27 @@ import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { Raleway } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'L\'Agence Chrétienne | Conseil Stratégique & Pilotage de Croissance',
|
||||
description: 'Nous analysons, structurons et pilotons la croissance des marques. Partenaire stratégique pour entrepreneurs et entreprises.',
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,9 +35,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<body className={`${interTight.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial";
|
||||
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
|
||||
import TeamCardSix from "@/components/sections/team/TeamCardSix";
|
||||
@@ -45,7 +45,7 @@ export default function LandscapingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlayTestimonial
|
||||
<HeroBillboard
|
||||
tag="Conseil Stratégique & Croissance"
|
||||
tagIcon={TrendingUp}
|
||||
title="Nous analysons, structurons et pilotons la croissance des marques."
|
||||
@@ -55,20 +55,9 @@ export default function LandscapingPage() {
|
||||
{ text: "Découvrir notre méthode", href: "#why-us" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: 'radial-gradient' }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-female-posing-with-glasses_23-2148415852.jpg"
|
||||
imageAlt="Image de fond stratégique"
|
||||
showDimOverlay={true}
|
||||
textPosition="top"
|
||||
testimonials={[
|
||||
{
|
||||
name: "Marc D.", handle: "PDG Startup Tech", testimonial: "L'Agence Chrétienne a transformé notre approche stratégique. Leur expertise est inégalée, des résultats concrets en quelques mois.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg", imageAlt: "Marc D."
|
||||
},
|
||||
{
|
||||
name: "Sophie L.", handle: "Directrice PME", testimonial: "Un véritable partenaire de croissance. Leur vision claire et leur accompagnement nous ont permis d'atteindre nos objectifs ambitieux.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hopeful-young-manager-businesswoman-cross-arms-chest-smiling-looking-confident-like-real-professional-white-background_176420-47052.jpg", imageAlt: "Sophie L."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -168,7 +157,7 @@ export default function LandscapingPage() {
|
||||
cardTag="Nos Réussites"
|
||||
cardTagIcon={Award}
|
||||
cardTitle="Des entrepreneurs qui se développent, des marques qui rayonnent. Découvrez l'impact de notre accompagnement."
|
||||
buttons={[{ text: "Découvrir nos études de cas", href: "#services" }]}
|
||||
buttons={[{ text: "Découvrir nos études de cas", href: "#services" }]}
|
||||
buttonAnimation="slide-up"
|
||||
cardAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -284,4 +273,4 @@ export default function LandscapingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
--secondary-cta: #1a1a1a;
|
||||
--secondary-cta-text: #ffffff;
|
||||
--accent: #b8860b;
|
||||
--background-accent: #8b6914;
|
||||
--background-accent: #d7ae45;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user