diff --git a/next.config.mjs b/next.config.mjs index 0058348..3182a51 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - // output: "export", + output: "export", trailingSlash: true, distDir: "dist", }; diff --git a/public/icons/Upside.svg b/public/icons/Upside.svg new file mode 100644 index 0000000..2ce5037 --- /dev/null +++ b/public/icons/Upside.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/images/stream/upside.jpg b/public/images/stream/upside.jpg new file mode 100644 index 0000000..48a629d Binary files /dev/null and b/public/images/stream/upside.jpg differ diff --git a/src/components/Clients.tsx b/src/components/Clients.tsx index 37d7f95..a4c07ce 100644 --- a/src/components/Clients.tsx +++ b/src/components/Clients.tsx @@ -1,4 +1,4 @@ -import Image from "next/image"; +/* eslint-disable @next/next/no-img-element */ import Heading2 from "./Headings/Heading2"; import { clients } from "../consts/clients"; @@ -12,10 +12,10 @@ const Clients = () => { {clients.map((client) => ( - diff --git a/src/components/Stream/Stream.tsx b/src/components/Stream/Stream.tsx index 2e3bf6b..1cc9d6e 100644 --- a/src/components/Stream/Stream.tsx +++ b/src/components/Stream/Stream.tsx @@ -52,6 +52,13 @@ const Stream = () => {
+ { background="/images/stream/liferes.jpg" link="https://stream.graff.tech/?build=lifeResidence&location=a1" /> - + /> */}
diff --git a/src/components/modals/CreateProjectModal.tsx b/src/components/modals/CreateProjectModal.tsx index d0afd4c..e950399 100644 --- a/src/components/modals/CreateProjectModal.tsx +++ b/src/components/modals/CreateProjectModal.tsx @@ -14,6 +14,7 @@ function CreateProjectModal() { company: "", city: "", image: "", + stage: 1, releaseDate: format(new Date(), "yyyy-MM-dd"), devices: [], }); diff --git a/src/types/IProject.ts b/src/types/IProject.ts index a6dfa79..f1f125c 100644 --- a/src/types/IProject.ts +++ b/src/types/IProject.ts @@ -1,7 +1,7 @@ import Device from "./Device"; interface IProject { - id: string; + id?: string; name: string; company: string; city: string;