initial commit: project completion with proper gitignore
This commit is contained in:
26
app/contact/page.tsx
Normal file
26
app/contact/page.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user