Files
GNX-WEB/frontEnd/app/about-us/page.tsx
Iliyan Angelov d7ff5c71e6 updates
2025-11-24 08:42:03 +02:00

27 lines
1002 B
TypeScript

// Server Component - metadata export is allowed here
import { Metadata } from 'next';
import { generateMetadata as createMetadata } from "@/lib/seo/metadata";
import AboutUsClient from "./AboutUsClient";
export const metadata: Metadata = createMetadata({
title: "About Us - Enterprise Software Development Company",
description: "Learn about GNX Soft - a leading enterprise software development company founded in 2020, specializing in custom software solutions, data replication, AI business intelligence, incident management, and comprehensive IT solutions for modern businesses.",
keywords: [
"About GNX Soft",
"Software Development Company",
"Enterprise Solutions Provider",
"IT Services Company",
"Custom Software Development",
"Technology Company",
"Software Engineering Team",
"Digital Transformation Experts",
],
url: "/about-us",
});
const AboutUsPage = () => {
return <AboutUsClient />;
};
export default AboutUsPage;