From d546b1a2f1f1e5b401fcf53bede4bf8020c4d300 Mon Sep 17 00:00:00 2001 From: mateuvrs Date: Mon, 4 Dec 2023 23:31:38 -0300 Subject: [PATCH] web(info): organiza layout dos colaboradores --- web/app/schedules/info/page.tsx | 95 ++++++++++----------------------- 1 file changed, 27 insertions(+), 68 deletions(-) diff --git a/web/app/schedules/info/page.tsx b/web/app/schedules/info/page.tsx index 3c538a06..fde6723b 100644 --- a/web/app/schedules/info/page.tsx +++ b/web/app/schedules/info/page.tsx @@ -5,78 +5,37 @@ import useUser from '@/app/hooks/useUser'; import Image from 'next/image'; import Link from 'next/link'; +function CollaboratorImage({ name, src }: { name: string, src: string }) { + return ( +
+ {name} +
+ + {`Foto + +
+ + ); +} + const Team = () => { return (
-
-
- Arthur Ribeiro -
- Foto Arthur -
-
- Caio Habibe -
- Foto Caio Habibe -
-
- Caio Felipe -
- Foto Caio Felipe -
+
+ + +
-
-
- Gabriel Castelo -
- Foto Gabriel -
-
- Henrique Camelo -
- Foto Henrique -
-
- Mateus Vieira -
- Foto Mateus -
+
+ + +
);