diff --git a/.vscode/settings.json b/.vscode/settings.json index cda7cad..001de40 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,12 +2,18 @@ "typescript.tsdk": "node_modules/typescript/lib", "typescript.enablePromptUseWorkspaceTsdk": true, "workbench.colorCustomizations": { - "activityBar.background": "#083428", - "titleBar.activeBackground": "#0B4937", - "titleBar.activeForeground": "#F2FDFA" + "activityBar.background": "#9afde2", + "titleBar.activeBackground": "#e2fff7", + "titleBar.activeForeground": "#0f1010" }, "cSpell.words": [ "atencao", - "reasonslist" + "formik", + "mapadavida", + "mapjson", + "reasonslist", + "smoothstep", + "swipeable", + "Swipeable" ] } \ No newline at end of file diff --git a/app/(default)/layout.tsx b/app/(default)/layout.tsx index d0a2788..cc47d29 100644 --- a/app/(default)/layout.tsx +++ b/app/(default)/layout.tsx @@ -1,36 +1,14 @@ 'use client' -import { useEffect } from 'react' - -import AOS from 'aos' -import 'aos/dist/aos.css' - -import Footer from '@/components/ui/footer' - export default function DefaultLayout({ children, }: { children: React.ReactNode }) { - useEffect(() => { - AOS.init({ - once: true, - disable: 'phone', - duration: 700, - easing: 'ease-out-cubic', - }) - }) - return ( <> -
- - {children} - -
- -