upd footer

This commit is contained in:
2025-09-24 16:38:04 +05:00
parent c18cfde93c
commit 5bfc06da77
5 changed files with 21 additions and 22 deletions
+2 -2
View File
@@ -2,6 +2,6 @@ import AboutMain from "@/components/pages/AboutPage/AboutMain";
import { InProcess } from "@/components/pages/InProcess";
export default function AboutPage() {
// return <InProcess />;
return <AboutMain />;
return <InProcess />;
// return <AboutMain />;
}
+2 -2
View File
@@ -2,6 +2,6 @@ import { InProcess } from "@/components/pages/InProcess";
import WebMain from "@/components/pages/WebPage/WebMain";
export default function WebPage() {
// return <InProcess />;
return <WebMain />;
return <InProcess />;
// return <WebMain />;
}
+16 -13
View File
@@ -60,23 +60,26 @@ export function Footer() {
</div>
</div>
<div className="lg:w-full flex flex-col md:flex-row md:max-lg:gap-[1.042vw] lg:gap-[1.111vw] gap-6 lg:pb-6 max-lg:py-6 pb-10 md::max-lgpt-4 !max-md:mt-[11.111vw] border-b border-[#232425] ">
<div className="flex flex-col gap-y-[1.111vw] lg:flex-1 md:w-[43.026vw] ">
<div className="lg:w-full flex flex-col md:flex-row md:max-lg:gap-[1.042vw] lg:gap-x-[0.833vw] gap-6 lg:pb-6 max-lg:py-6 pb-10 md::max-lgpt-4 !max-md:mt-[11.111vw] border-b border-[#232425] ">
<div className="flex flex-col gap-y-[1.111vw] lg:min-w-[48.193vw] flex-1">
<span className=" text1 text-[#7A7A7A]">Юридический адрес:</span>
<span className="headline2 font-medium max-md:leading-4">
<span className="headline2 max-md:leading-4 font-medium text-[#7A7A7A]">
620103 г. Екатеринбург, <br /> ул. Ляпустина, д. 60, кв. 14
</span>
</div>
<div className="flex flex-col gap-y-[1.111vw] lg:flex-1 md:w-[43.026vw]">
<span className=" text1 text-[#7A7A7A]">Реквизиты:</span>
<div className="headline2 font-medium max-md:leading-4">
<span>
ИНН: <span className="text-[#7A7A7A]">6679174128</span>
</span>
<br />
<span>
КПП: <span className="text-[#7A7A7A]">667901001</span>
</span>
<div className="flex flex-col gap-y-[1.111vw] flex-1">
<span className="text1 text-[#7A7A7A]">Реквизиты:</span>
<div className="headline2 max-md:leading-4 font-medium text-[#7A7A7A]">
<p>ИНН: 6679174128</p>
<p>КПП: 667901001</p>
<p>ООО &quot;ГРАФФ.ЭСТЕЙТ&quot;</p>
<p>ОГРН 1246600010140</p>
</div>
</div>
<div className="flex flex-col gap-y-[1.111vw]">
<span className=" text1 text-[#7A7A7A]">Наш основной стек:</span>
<div className="headline2 max-md:leading-4 font-medium text-[#7A7A7A]">
<p>Unreal Engine 5, C++</p>
</div>
</div>
</div>
@@ -57,10 +57,6 @@ export function Clients({ showTitle = true }: { showTitle?: boolean }) {
return () => window.removeEventListener("resize", handleResize);
}, [isLg, isMd, isXs]);
useEffect(() => {
console.log(isLg, isMd, isXs);
}, [isLg, isMd, isXs]);
return (
<div
className={`lg:space-y-16 md:max-lg:space-y-12 lg:mt-40 mt-[100px] space-y-10${
@@ -1,6 +1,6 @@
"use client";
import { postTags } from "@/consts/PostTags";
import { postTags } from "@/consts/postTags";
import { projectsTags } from "@/consts/projectsTags";
import { usePathname, useRouter, useSearchParams } from "next/navigation";
import { useEffect, useMemo, useRef, useState } from "react";