feat: add ContactPage and ContactContent components for user inquiries

This commit is contained in:
poyrazavsever
2026-03-10 21:39:26 +03:00
parent 0ccecf6b41
commit 9142962fce
2 changed files with 102 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import { ContactContent } from "@/components/contact-content";
export default function ContactPage() {
return <ContactContent />;
}