From 8eea94ceda8afbb41d2db0f1944d35b1a5b7d01f Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Tue, 27 Jan 2026 08:21:55 +0100 Subject: [PATCH] hero --- components/home/Hero.tsx | 9 ++++----- components/home/HeroIllustration.tsx | 10 +++++----- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/components/home/Hero.tsx b/components/home/Hero.tsx index 5a806ad6..15d55247 100644 --- a/components/home/Hero.tsx +++ b/components/home/Hero.tsx @@ -1,10 +1,9 @@ 'use client'; -import React from 'react'; +import Scribble from '@/components/Scribble'; +import { Button, Container, Heading, Section } from '@/components/ui'; import { motion } from 'framer-motion'; import { useTranslations } from 'next-intl'; -import { Container, Button, Section, Heading } from '@/components/ui'; -import Scribble from '@/components/Scribble'; import HeroIllustration from './HeroIllustration'; export default function Hero() { @@ -20,7 +19,7 @@ export default function Hero() { variants={containerVariants} > - + {t.rich('title', { green: (chunks) => ( @@ -66,7 +65,7 @@ export default function Hero() { +
@@ -741,7 +741,7 @@ export default function HeroIllustration() { -
+
); }