From 7ec749948dab8055c3e17e2697313af599e55cae Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Wed, 9 Jul 2025 16:43:32 +0200 Subject: [PATCH] add logo hero --- src/components/Hero.tsx | 9 ++++---- src/components/Logo_hero.tsx | 45 ++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 4 deletions(-) create mode 100644 src/components/Logo_hero.tsx diff --git a/src/components/Hero.tsx b/src/components/Hero.tsx index 7403d74..5eee273 100644 --- a/src/components/Hero.tsx +++ b/src/components/Hero.tsx @@ -2,6 +2,7 @@ import Image from 'next/image' import { Button } from '@/components/Button' import { Container } from '@/components/Container' +import { Logo_hero } from '@/components/Logo_hero' import logoLaravel from '@/images/logos/laravel.svg' import logoMirage from '@/images/logos/mirage.svg' import logoStatamic from '@/images/logos/statamic.svg' @@ -38,10 +39,10 @@ export function Hero() { -

- OurWorld -

-

+

+ +
+

Shaping the future of Augmented Collective Intelligence

diff --git a/src/components/Logo_hero.tsx b/src/components/Logo_hero.tsx new file mode 100644 index 0000000..4f18829 --- /dev/null +++ b/src/components/Logo_hero.tsx @@ -0,0 +1,45 @@ +export function Logo_hero(props: React.ComponentPropsWithoutRef<'svg'>) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ) +}