This commit is contained in:
2024-04-10 12:57:31 +05:00
parent 1f4232231e
commit 060f3c0b23
7 changed files with 20 additions and 8 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
// output: "export",
output: "export",
trailingSlash: true,
distDir: "dist",
};
+4
View File
@@ -0,0 +1,4 @@
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M37.4867 2.35972V37.222C37.4867 39.5613 36.8352 41.5183 35.5323 43.0929C34.2294 44.6676 32.3338 45.4579 29.8455 45.4639H25.9985C23.5102 45.4639 21.6146 44.6736 20.3117 43.0929C19.0088 41.5123 18.3573 39.5553 18.3573 37.222V12.1733L13.0014 14.1559V37.4681C12.974 39.0377 13.3473 40.5874 14.0845 41.9639C14.8068 43.2777 15.7906 44.4216 16.972 45.3217C18.2256 46.2713 19.6312 46.9903 21.1257 47.4465C22.7046 47.9411 24.3472 48.19 25.9985 48.1849H29.8499C31.5019 48.1899 33.1452 47.9409 34.7249 47.4465C36.2186 46.9897 37.6233 46.2708 38.8764 45.3217C40.0579 44.4216 41.0416 43.2777 41.7639 41.9639C42.5022 40.5878 42.8756 39.0378 42.847 37.4681V0.45166L37.4867 2.35972Z" fill="white"/>
<path d="M34.0628 53.575H21.7871V55.4108H34.0628V53.575Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 868 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

+4 -4
View File
@@ -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 = () => {
</Heading2>
{clients.map((client) => (
<Image
<img
key={client.id}
width={380}
height={380}
width={384}
height={384}
src={client.src}
alt=""
/>
+9 -2
View File
@@ -52,6 +52,13 @@ const Stream = () => {
</div>
<div className="border-t border-[#3D425C]">
<StreamButton
icon="/icons/Upside.svg"
title="ЖК «Upside Towers»"
location="Россия, Москва"
background="/images/stream/upside.jpg"
link="https://stream.graff.tech/?build=upsideTowersDev&location=a1"
/>
<StreamButton
icon="/icons/Revolution.svg"
title="МФК «Re:volution towers»"
@@ -66,13 +73,13 @@ const Stream = () => {
background="/images/stream/liferes.jpg"
link="https://stream.graff.tech/?build=lifeResidence&location=a1"
/>
<StreamButton
{/* <StreamButton
icon="/icons/Aivaz.svg"
title="ЖК «Айвазовский City»"
location="Россия, Тюмень"
background="/images/stream/aivaz.jpg"
link="https://stream.graff.tech/?build=IvazowskyDev&location=a1"
/>
/> */}
</div>
<div className="absolute -top-36 left-0 -z-10 blur-[20px]">
@@ -14,6 +14,7 @@ function CreateProjectModal() {
company: "",
city: "",
image: "",
stage: 1,
releaseDate: format(new Date(), "yyyy-MM-dd"),
devices: [],
});
+1 -1
View File
@@ -1,7 +1,7 @@
import Device from "./Device";
interface IProject {
id: string;
id?: string;
name: string;
company: string;
city: string;