26 lines
844 B
TypeScript
26 lines
844 B
TypeScript
import Navbar from "@/components/Navbar";
|
||
import Footer from "@/components/Footer";
|
||
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 />
|
||
<Footer />
|
||
</main>
|
||
);
|
||
} |