From add06b0bbfa5b893371d882f94d1bb2f92ebd284 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 12:33:50 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e337a17..dba89e4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -10,8 +10,8 @@ import { Montserrat, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'JT Production And Visual | Réalisateur Vidéaste', - description: 'JT Production And Visual : Création d\'images fortes et mémorables pour artistes et pros.', + title: 'JT Production', + description: 'Production visuelle et artistique.', openGraph: { "title": "JT Production And Visual", "description": "Production vidéo et photographie professionnelle", -- 2.49.1 From cfd715676fc3487e86a08864d8f84d9c777ec9e6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 12:33:50 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 439 ++++++----------------------------------------- 1 file changed, 56 insertions(+), 383 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e199f76..eaa0b4c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,390 +1,63 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; +import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; +import FeatureCardTwentyNine from "@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine"; +import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; +import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import Link from "next/link"; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "Artists", id: "/artists" }, + { name: "Portfolio", id: "/portfolio" }, + { name: "Tarifs", id: "/tarifs" }, + { name: "Contact", id: "/contact" }, +]; + +export default function Home() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1