diff --git a/frontend/public/static/imgs/faladev.ico b/frontend/public/static/imgs/faladev.ico new file mode 100644 index 0000000..b129a5a Binary files /dev/null and b/frontend/public/static/imgs/faladev.ico differ diff --git a/frontend/public/static/imgs/faladev.jpg b/frontend/public/static/imgs/faladev.jpg new file mode 100644 index 0000000..e75ff71 Binary files /dev/null and b/frontend/public/static/imgs/faladev.jpg differ diff --git a/frontend/public/static/imgs/instagram.svg b/frontend/public/static/imgs/instagram.svg new file mode 100644 index 0000000..77a0d8e --- /dev/null +++ b/frontend/public/static/imgs/instagram.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend/public/static/imgs/whatsapp.svg b/frontend/public/static/imgs/whatsapp.svg new file mode 100644 index 0000000..c79479f --- /dev/null +++ b/frontend/public/static/imgs/whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/public/static/imgs/youtube.svg b/frontend/public/static/imgs/youtube.svg new file mode 100644 index 0000000..624e156 --- /dev/null +++ b/frontend/public/static/imgs/youtube.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/frontend/src/app/(mentoring)/mentoring.model.ts b/frontend/src/app/(mentoring)/mentoring.model.ts new file mode 100644 index 0000000..5264fba --- /dev/null +++ b/frontend/src/app/(mentoring)/mentoring.model.ts @@ -0,0 +1,7 @@ +import { IMentoringAgendaService } from '@/services/MentoringAgenda/IMentoringAgendaService.model' +import { useForm } from 'react-hook-form' + +export function useMentoringModel(service: IMentoringAgendaService) { + const {} = useForm() + return {} +} diff --git a/frontend/src/app/(mentoring)/mentoring.view.tsx b/frontend/src/app/(mentoring)/mentoring.view.tsx index d3379bf..093dc1c 100644 --- a/frontend/src/app/(mentoring)/mentoring.view.tsx +++ b/frontend/src/app/(mentoring)/mentoring.view.tsx @@ -1,3 +1,80 @@ export function MentoringView() { - return
+ return ( +
+
+
+ +
+
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+
+ +

+ Essa é uma mentoria gratuita para quem está entrando na área de tecnologia, migrando de área ou buscando + crescimento profissional. +

+
+
+ ) } diff --git a/frontend/src/app/(mentoring)/page.tsx b/frontend/src/app/(mentoring)/page.tsx index 4d6ce68..493989c 100644 --- a/frontend/src/app/(mentoring)/page.tsx +++ b/frontend/src/app/(mentoring)/page.tsx @@ -1,3 +1,5 @@ +import { MentoringView } from './mentoring.view' + export default function Home() { - return
+ return } diff --git a/frontend/src/services/MentoringAgenda/IMentoringAgendaService.model.ts b/frontend/src/services/MentoringAgenda/IMentoringAgendaService.model.ts new file mode 100644 index 0000000..fbe30c9 --- /dev/null +++ b/frontend/src/services/MentoringAgenda/IMentoringAgendaService.model.ts @@ -0,0 +1,3 @@ +export interface IMentoringAgendaService { + SignUpMentoring: () => void +} diff --git a/frontend/src/services/MentoringAgenda/MentoringAgenda.service.ts b/frontend/src/services/MentoringAgenda/MentoringAgenda.service.ts index fd49274..1fafc7e 100644 --- a/frontend/src/services/MentoringAgenda/MentoringAgenda.service.ts +++ b/frontend/src/services/MentoringAgenda/MentoringAgenda.service.ts @@ -1,11 +1,9 @@ import { apiBFF } from '../apiBFF' - -interface IMentoringAgendaService { - SignUpMentoring: () => void -} +import { IMentoringAgendaService } from './IMentoringAgendaService.model' export class MentoringAgendaService implements IMentoringAgendaService { async SignUpMentoring() { const { data } = await apiBFF.post('/') + return data } }