Update deps

This commit is contained in:
Darren Clarke 2024-03-03 18:13:26 +01:00
parent 6663e8ed1e
commit 486f989494
33 changed files with 776 additions and 695 deletions

View file

@ -1,14 +1,14 @@
"use client";
import { FC } from "react";
import { useTranslate } from "react-polyglot";
import Image from "next/legacy/image";
import Link from "next/link";
import Image from "next/image";
import { useTranslate } from "react-polyglot";
import { Grid, Container, Box, Button } from "@mui/material";
import { useAppContext } from "./AppProvider";
import { PageHeader } from "./PageHeader";
import { AboutFeature } from "./AboutFeature";
import { AboutBox } from "./AboutBox";
import { AboutFeature } from "./AboutFeature";
import { PageHeader } from "./PageHeader";
import AbstractDiagram from "../images/abstract-diagram.png";
import AboutHeader from "../images/about-header.png";
import Globe from "../images/globe.png";
@ -134,7 +134,7 @@ export const About: FC = () => {
{line}
</Box>
))}
<Link href="mailto:info@digiresilience.org" passHref>
<Link href="mailto:info@digiresilience.org">
<Button
sx={{
fontSize: 14,

View file

@ -1,7 +1,6 @@
"use client";
import { FC } from "react";
// import Link from "next/link";
import { Box } from "@mui/material";
import Iframe from "react-iframe";
import { useAppContext } from "./AppProvider";