diff --git a/app/page.jsx b/app/page.jsx index 62e136f2..6f8e65b1 100644 --- a/app/page.jsx +++ b/app/page.jsx @@ -1,63 +1,37 @@ -import Link from 'next/link'; -import { Card } from 'components/card'; -import { ContextAlert } from 'components/context-alert'; -import { Markdown } from 'components/markdown'; -import { RandomQuote } from 'components/random-quote'; -import { getNetlifyContext } from 'utils'; -const contextExplainer = ` -The card below is rendered on the server based on the value of \`process.env.CONTEXT\` -([docs](https://docs.netlify.com/configure-builds/environment-variables/#build-metadata)): -`; +import Link from "next/link"; -const preDynamicContentExplainer = ` -The card content below is fetched by the client-side from \`/quotes/random\` (see file \`app/quotes/random/route.js\`) with a different quote shown on each page load: -`; +export default function Page() { + return ( +
+ +

+ Análise Inteligente de Pele com IA +

-const ctx = getNetlifyContext(); +

+ Nossa tecnologia combina análise de imagem com perguntas sobre + tipo de pele e comportamento ao sol, criando uma trava de segurança + que corrige erros causados pela iluminação da foto e aumenta + significativamente a precisão do resultado. +

-export default function Page() { - return ( -
-
- -

Netlify Platform Starter – Next.js

-

- Deploy the latest version of Next.js — including Turbopack, React Compiler, and the new caching APIs - — on Netlify in seconds. No configuration or custom adapter required. -

- - Read the Docs - -
- {!!ctx && ( -
- - -
- )} -
- - -
-
- ); -} +

+ Diferente de outros apps, nossa IA entende quando a imagem engana o sensor, + evitando diagnósticos errados causados por luz azulada, sombras ou filtros. +

+ + + Em breve – Teste sua pele + + + + Tecnologia em desenvolvimento • Uso educacional + -function RuntimeContextCard() { - const title = `Netlify Context: running in ${ctx} mode.`; - if (ctx === 'dev') { - return ( - -

Next.js will rebuild any page you navigate to, including static pages.

-
- ); - } else { - const now = new Date().toISOString(); - return ( - -

This page was statically-generated at build time ({now}).

-
- ); - } +
+ ); }