Some checks failed
Build & Deploy MB Grid Solutions / build-and-deploy (push) Failing after 7s
12 lines
336 B
TypeScript
12 lines
336 B
TypeScript
import { Metadata } from "next";
|
|
import AboutContent from "@/components/AboutContent";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Über uns",
|
|
description: "Erfahren Sie mehr über MB Grid Solutions, unsere Expertise und unser Manifest für technische Exzellenz.",
|
|
};
|
|
|
|
export default function Page() {
|
|
return <AboutContent />;
|
|
}
|