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 ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { MessageCircle } from "lucide-react";
export default function ArchitectureStudioPage() {
return (
<>
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur"
@@ -29,14 +31,16 @@ export default function ArchitectureStudioPage() {
<NavbarLayoutFloatingInline
brandName="GRN GROUP"
navItems={[
{ name: "Проекты", id: "projects" },
{ name: "О нас", id: "philosophy" },
{ name: "Контакты", id: "contact" }
{ name: "Главная", href: "/" },
{ name: "Услуги", href: "/#projects" },
{ name: "Портфолио", href: "/#projects" },
{ name: "Контакты", href: "/contacts" }
]}
button={{
text: "Запрос", href: "contact"
text: "Оставить заявку", href: "/contacts"
}}
className="text-xs tracking-widest uppercase"
brandNameClassName="font-bold text-gold-accent"
navItemClassName="text-sm font-light tracking-wide"
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"
imageAlt="modern renovated room with wooden floor"
buttons={[
{ text: "Смотреть проекты", href: "projects" }
{ text: "Смотреть проекты", href: "/#projects" }
]}
mediaAnimation="slide-up"
className="py-24 md:py-32"
@@ -160,27 +164,28 @@ export default function ArchitectureStudioPage() {
columns={[
{
title: "Компания", items: [
{ label: "О нас", href: "philosophy" },
{ label: "Проекты", href: "projects" }
{ label: "О нас", href: "/#philosophy" },
{ label: "Проекты", href: "/#projects" }
]
},
{
title: "Связь", items: [
{ label: "hello@grngroup.com", href: "mailto:hello@grngroup.com" },
{ label: "Контакты", href: "contact" }
{ label: "Контакты", href: "/contacts" }
]
},
{
title: "Услуги", items: [
{ label: "Жилые объекты", href: "#" },
{ label: "Коммерческие объекты", href: "#" },
{ label: "Реконструкция", href: "#" },
{ label: "Ремонт под ключ", href: "#" }
{ label: "Жилые объекты", href: "/#projects" },
{ label: "Коммерческие объекты", href: "/#projects" },
{ label: "Реконструкция", href: "/#projects" },
{ label: "Ремонт под ключ", href: "/#projects" }
]
}
]}
copyrightText="© 2025 GRN GROUP. Эксперты в ремонте и реновации."
className="mt-0"
logoTextClassName="font-bold text-gold-accent"
columnTitleClassName="text-base uppercase tracking-widest font-light mb-0"
columnItemClassName="text-base font-light"
copyrightTextClassName="text-sm font-light"
@@ -188,5 +193,15 @@ export default function ArchitectureStudioPage() {
</div>
</ReactLenis>
</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>
</>
);
}