From f90ed4bee9f6aed2cdec29176b3bb7aa2944987d Mon Sep 17 00:00:00 2001 From: Baptiste <68440638+Baptiiiiste@users.noreply.github.com> Date: Wed, 12 Nov 2025 16:32:56 +0100 Subject: [PATCH 1/6] UPD - Lint --- app/[locale]/page.tsx | 22 +- .../(auth)/landing/EffortlessIntegration.tsx | 422 ------------ .../pages/(auth)/landing/NumbersThatSpeak.tsx | 600 ------------------ .../(auth)/landing/SmartSimpleBrilliant.tsx | 560 ---------------- .../(auth)/landing/TestimonialSection.tsx | 167 ----- .../pages/(auth)/landing/YourWorkInSync.tsx | 333 ---------- .../pages/(auth)/sign-in/SignInForm.tsx | 2 +- .../pages/(auth)/sign-up/SignUpForm.tsx | 2 +- .../(root)/Webhooks/WebhookUsageCard.tsx | 1 - components/ui/chart.tsx | 104 +-- components/ui/progress.tsx | 12 +- lib/actions/auth/authorize-google.action.ts | 3 +- lib/auth/config.ts | 2 +- 13 files changed, 73 insertions(+), 2157 deletions(-) delete mode 100644 components/pages/(auth)/landing/EffortlessIntegration.tsx delete mode 100644 components/pages/(auth)/landing/NumbersThatSpeak.tsx delete mode 100644 components/pages/(auth)/landing/SmartSimpleBrilliant.tsx delete mode 100644 components/pages/(auth)/landing/TestimonialSection.tsx delete mode 100644 components/pages/(auth)/landing/YourWorkInSync.tsx diff --git a/app/[locale]/page.tsx b/app/[locale]/page.tsx index a11f02e..87e111f 100644 --- a/app/[locale]/page.tsx +++ b/app/[locale]/page.tsx @@ -4,19 +4,15 @@ import type React from 'react' import { useState, useEffect, useRef } from 'react' import { DocumentationSection } from '@/components/pages/(auth)/landing/DocumentationSection' -import { TestimonialsSection } from '@/components/pages/(auth)/landing/TestimonialSection' import { PricingSection } from '@/components/pages/(auth)/landing/PrincingSection' import { FAQSection } from '@/components/pages/(auth)/landing/FaqSection' import { CTASection } from '@/components/pages/(auth)/landing/CtaSection' import { FooterSection } from '@/components/pages/(auth)/landing/FooterSection' -import NumbersThatSpeak from '@/components/pages/(auth)/landing/NumbersThatSpeak' -import EffortlessIntegration from '@/components/pages/(auth)/landing/EffortlessIntegration' -import YourWorkInSync from '@/components/pages/(auth)/landing/YourWorkInSync' -import SmartSimpleBrilliant from '@/components/pages/(auth)/landing/SmartSimpleBrilliant' import { SITENAME } from '@/constants/globals' import { LANDING_PAGE_LINKS, ROUTES } from '@/constants/routes' import { Link } from '@/lib/i18n/navigation' import { useTranslations } from 'next-intl' +import Image from 'next/image' function Badge({ icon, text }: { icon: React.ReactNode; text: string }) { return ( @@ -143,7 +139,10 @@ export default function LandingPage() {