Add src/app/company-introduction/page.tsx

This commit is contained in:
2026-05-08 05:31:00 +00:00
parent 39d00afe6e
commit 5e47d36644

View File

@@ -0,0 +1,32 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TextAbout from '@/components/sections/about/TextAbout';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function CompanyIntroduction() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/company-introduction" }, { name: "Services", id: "/business-services" }, { name: "Contact", id: "contact" }]}
brandName="대양엔지니어링"
/>
<TextAbout
title="Company Introduction"
description="Daeyang Engineering has been a leader in electrical infrastructure since 1999, driven by KS-certified excellence and innovation."
className="pt-32"
/>
<MetricCardFourteen
title="Our History"
tag="Since 1999"
metrics={[{ id: "1", value: "27+", description: "Years Experience" }, { id: "2", value: "23", description: "Patents" }, { id: "3", value: "1st", description: "Gen Tech-Venture" }]}
/>
<FooterBaseReveal logoText="대양엔지니어링" columns={[]} />
</ReactLenis>
</ThemeProvider>
);
}