Update src/app/services/page.tsx

This commit is contained in:
2026-04-01 19:42:23 +00:00
parent f2a9b245f1
commit 2da436103d

View File

@@ -5,9 +5,9 @@ import ReactLenis from "lenis/react";
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TextAbout from '@/components/sections/about/TextAbout';
import { TextAbout } from '@/components/sections/about/TextAbout';
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -25,30 +25,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Ecommerce",
id: "/shop",
},
{
name: "Blog",
id: "/blog",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Blog", id: "/blog" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
brandName="3D Industry"
/>
@@ -60,27 +41,12 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: "1",
title: "SLA 3D Baskı",
description: "Yüksek hassasiyetli prototip üretimi.",
imageSrc: "http://img.b2bpic.net/free-photo/man-holding-rubber-bicycle-part_23-2147892660.jpg?_wi=2",
},
{
id: "2",
title: "Lazer Tarama",
description: "Dijital ölçümleme ve kalite kontrol.",
imageSrc: "http://img.b2bpic.net/free-photo/production-electronic-components-high-tech-factory_1385-3207.jpg?_wi=2",
},
{
id: "3",
title: "CAD Tasarım",
description: "Tersine mühendislik süreçleri.",
imageSrc: "http://img.b2bpic.net/free-photo/add-details-car-body-robotic-equipment-makes-assembly-car-modern-car-assembly-factory_645730-646.jpg?_wi=2",
},
{ id: "1", title: "SLA 3D Baskı", description: "Yüksek hassasiyet.", tag: "Üretim", imageSrc: "http://img.b2bpic.net/free-photo/man-holding-rubber-bicycle-part_23-2147892660.jpg" },
{ id: "2", title: "Lazer Tarama", description: "Hassas ölçüm.", tag: "Analiz", imageSrc: "http://img.b2bpic.net/free-photo/production-electronic-components-high-tech-factory_1385-3207.jpg" },
{ id: "3", title: "CAD Tasarım", description: "Tersine mühendislik.", tag: "Tasarım", imageSrc: "http://img.b2bpic.net/free-photo/add-details-car-body-robotic-equipment-makes-assembly-car-modern-car-assembly-factory_645730-646.jpg" }
]}
title="Hizmetlerimiz"
description="Profesyonel endüstriyel çözümlerimiz."
description="Profesyonel çözümlerimiz."
/>
</div>
@@ -88,51 +54,18 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="Sektör Lideri Çözümler"
description="Uzman kadromuzla yanınızdayız."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "Hizmetler",
items: [
{
label: "3D Baskı",
href: "/services",
},
{
label: "3D Tarama",
href: "/services",
},
{
label: "Tersine Mühendislik",
href: "/services",
},
],
},
{
title: "Kurumsal",
items: [
{
label: "Hakkımızda",
href: "/about",
},
{
label: "Blog",
href: "/blog",
},
{
label: "İletişim",
href: "/contact",
},
],
},
{ title: "Hizmetler", items: [{ label: "3D Baskı", href: "/services" }, { label: "3D Tarama", href: "/services" }, { label: "Tersine Mühendislik", href: "/services" }] },
{ title: "Kurumsal", items: [{ label: "Hakkımızda", href: "/about" }, { label: "Blog", href: "/blog" }, { label: "İletişim", href: "/contact" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}