Update src/app/page.tsx

This commit is contained in:
2026-06-10 06:03:34 +00:00
parent 508f508f15
commit 794a677652

View File

@@ -9,9 +9,11 @@ import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
import ContactSplit from "@/components/sections/contact/ContactSplit"; import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { MessageCircle } from "lucide-react";
export default function ArchitectureStudioPage() { export default function ArchitectureStudioPage() {
return ( return (
<>
<ThemeProvider <ThemeProvider
defaultButtonVariant="expand-hover" defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur" defaultTextAnimation="reveal-blur"
@@ -29,14 +31,16 @@ export default function ArchitectureStudioPage() {
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
brandName="GRN GROUP" brandName="GRN GROUP"
navItems={[ navItems={[
{ name: "Проекты", id: "projects" }, { name: "Главная", href: "/" },
{ name: "О нас", id: "philosophy" }, { name: "Услуги", href: "/#projects" },
{ name: "Контакты", id: "contact" } { name: "Портфолио", href: "/#projects" },
{ name: "Контакты", href: "/contacts" }
]} ]}
button={{ button={{
text: "Запрос", href: "contact" text: "Оставить заявку", href: "/contacts"
}} }}
className="text-xs tracking-widest uppercase" className="text-xs tracking-widest uppercase"
brandNameClassName="font-bold text-gold-accent"
navItemClassName="text-sm font-light tracking-wide" navItemClassName="text-sm font-light tracking-wide"
buttonClassName="px-6 py-2 text-sm tracking-widest uppercase" buttonClassName="px-6 py-2 text-sm tracking-widest uppercase"
/> />
@@ -51,7 +55,7 @@ export default function ArchitectureStudioPage() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E4r9ou3Tp6F2ybU0Rjz0eb8Tuu/uploaded-1781068669729-9hqicbda.png" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E4r9ou3Tp6F2ybU0Rjz0eb8Tuu/uploaded-1781068669729-9hqicbda.png"
imageAlt="modern renovated room with wooden floor" imageAlt="modern renovated room with wooden floor"
buttons={[ buttons={[
{ text: "Смотреть проекты", href: "projects" } { text: "Смотреть проекты", href: "/#projects" }
]} ]}
mediaAnimation="slide-up" mediaAnimation="slide-up"
className="py-24 md:py-32" className="py-24 md:py-32"
@@ -160,27 +164,28 @@ export default function ArchitectureStudioPage() {
columns={[ columns={[
{ {
title: "Компания", items: [ title: "Компания", items: [
{ label: "О нас", href: "philosophy" }, { label: "О нас", href: "/#philosophy" },
{ label: "Проекты", href: "projects" } { label: "Проекты", href: "/#projects" }
] ]
}, },
{ {
title: "Связь", items: [ title: "Связь", items: [
{ label: "hello@grngroup.com", href: "mailto:hello@grngroup.com" }, { label: "hello@grngroup.com", href: "mailto:hello@grngroup.com" },
{ label: "Контакты", href: "contact" } { label: "Контакты", href: "/contacts" }
] ]
}, },
{ {
title: "Услуги", items: [ title: "Услуги", items: [
{ label: "Жилые объекты", href: "#" }, { label: "Жилые объекты", href: "/#projects" },
{ label: "Коммерческие объекты", href: "#" }, { label: "Коммерческие объекты", href: "/#projects" },
{ label: "Реконструкция", href: "#" }, { label: "Реконструкция", href: "/#projects" },
{ label: "Ремонт под ключ", href: "#" } { label: "Ремонт под ключ", href: "/#projects" }
] ]
} }
]} ]}
copyrightText="© 2025 GRN GROUP. Эксперты в ремонте и реновации." copyrightText="© 2025 GRN GROUP. Эксперты в ремонте и реновации."
className="mt-0" className="mt-0"
logoTextClassName="font-bold text-gold-accent"
columnTitleClassName="text-base uppercase tracking-widest font-light mb-0" columnTitleClassName="text-base uppercase tracking-widest font-light mb-0"
columnItemClassName="text-base font-light" columnItemClassName="text-base font-light"
copyrightTextClassName="text-sm font-light" copyrightTextClassName="text-sm font-light"
@@ -188,5 +193,15 @@ export default function ArchitectureStudioPage() {
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
<a
href="https://wa.me/77011234567"
target="_blank"
rel="noopener noreferrer"
className="fixed bottom-6 right-6 bg-[#25D366] text-white p-4 rounded-full shadow-lg z-50 hover:scale-105 transition-transform"
aria-label="WhatsApp"
>
<MessageCircle className="w-6 h-6" />
</a>
</>
); );
} }