Skip to content

Commit

Permalink
Merge pull request #47 from Grupo-Syntax-Squad/30-func/dashboards
Browse files Browse the repository at this point in the history
30-func/dashboards
  • Loading branch information
WellingtonLFaria authored Oct 20, 2024
2 parents da86e5c + 88c6db8 commit 723a620
Show file tree
Hide file tree
Showing 37 changed files with 815 additions and 243 deletions.
135 changes: 91 additions & 44 deletions tupan/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion tupan/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@
"@material-tailwind/react": "^2.1.10",
"axios": "^1.7.7",
"flowbite": "^2.5.1",
"next": "14.2.9",
"highcharts": "^11.4.8",
"leaflet": "^1.9.4",
"next": "^14.2.15",
"react": "^18",
"react-dom": "^18",
"react-leaflet": "^4.2.1",
"react-toastify": "^10.0.5",
"tupan": "file:"
},
Expand Down
9 changes: 9 additions & 0 deletions tupan/src/app/_page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// pages/_app.tsx
import "leaflet/dist/leaflet.css";
import { AppProps } from "next/app";

function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}

export default MyApp;
2 changes: 1 addition & 1 deletion tupan/src/app/alertas/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";

import { MenuLateral } from "@/components/menu-lateral";
import { MenuLateral } from "@/components/menu/lateral";
import { NavTop } from "@/components/nav-top";
import React, { useEffect, useState } from "react";
import axios from "axios";
Expand Down
2 changes: 1 addition & 1 deletion tupan/src/app/cadastro-alerta/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";

import React, { useState, useEffect } from "react";
import { MenuLateral } from "@/components/menu-lateral";
import { MenuLateral } from "@/components/menu/lateral";
import { NavTop } from "@/components/nav-top";
import axios from "axios";

Expand Down
Loading

0 comments on commit 723a620

Please sign in to comment.