From 45fdd1a14c1f66b39bd87239f0992f47c6eec8c3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 5 May 2026 21:46:45 +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 2550e5d..6dda821 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Playfair_Display, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Daria - Apprends le Darija avec une IA marocaine', - description: 'Apprends le Darija marocain facilement grâce à Daria, ton amie virtuelle IA qui t\'apprend par la voix.', + title: 'Workflow Revolution', + description: 'Streamline your team\'s workflow with our AI-powered productivity platform.', openGraph: { "title": "Daria - Apprends le Darija", "description": "Ton amie virtuelle marocaine.", -- 2.49.1 From f5559cc58913851f199c69d3a0ca22542dee2041 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 5 May 2026 21:46:45 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 264 ++++++++++++++++------------------------------- 1 file changed, 88 insertions(+), 176 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 141b9f2..d4bfeaf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,193 +1,105 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; -import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; +import FeatureCardTwentyNine from "@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine"; +import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" } +]; + +export default function Page() { return ( - - - - -
- + +
+ -
- -
- +
+
+ -
- -
- +
+
+ -
- -
- -
- -
- +
+
+ +
+
+ -
- -
- -
- -
- -
- -
- -
- - - + /> +
+
+ +
+
+ +
+
+ +
+
); } \ No newline at end of file -- 2.49.1