Files

23 lines
737 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import Contact from "@/components/Contact";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "İletişim",
description: "Muğla Dijital ekibiyle iletişime geçin. Projeleriniz hakkında konuşmak veya teklif almak için bizimle hemen bağlantı kurun.",
alternates: {
canonical: "/contact",
},
openGraph: {
title: "İletişim | Muğla Dijital",
description: "Bize ulaşın ve dijital hedeflerinizi birlikte gerçekleştirelim.",
url: "https://mugladijitalmedya.com/contact",
}
};
export default function ContactPage() {
return (
<main className="min-h-screen bg-[#f5f5f0] text-black pt-12">
<Contact />
</main>
);
}