diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index bcad61c..3506a38 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -4,24 +4,22 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import Link from "next/link"; -// No 'contact' section component found in the provided registry. The page will render Navbar and Footer only. - export default function ContactPage() { const navItems = [ - { href: "/", label: "الرئيسية" }, - { href: "/learn", label: "ابدأ التعلم" }, - { href: "/training", label: "التدريب" }, - { href: "/challenges", label: "التحديات" }, - { href: "/levels", label: "المستويات" }, - { href: "/achievements", label: "الإنجازات" }, - { href: "/statistics", label: "الإحصائيات" }, - { href: "/keyboard", label: "لوحة المفاتيح" }, - { href: "/tips", label: "نصائح" }, - { href: "/quiz", label: "الاختبار" }, - { href: "/certificate", label: "الشهادة" }, - { href: "/about-us", label: "من نحن" }, - { href: "/faq", label: "الأسئلة الشائعة" }, - { href: "/contact", label: "تواصل معنا" } + { name: "الرئيسية", id: "/" }, + { name: "ابدأ التعلم", id: "/learn" }, + { name: "التدريب", id: "/training" }, + { name: "التحديات", id: "/challenges" }, + { name: "المستويات", id: "/levels" }, + { name: "الإنجازات", id: "/achievements" }, + { name: "الإحصائيات", id: "/statistics" }, + { name: "لوحة المفاتيح", id: "/keyboard" }, + { name: "نصائح", id: "/tips" }, + { name: "الاختبار", id: "/quiz" }, + { name: "الشهادة", id: "/certificate" }, + { name: "من نحن", id: "/about-us" }, + { name: "الأسئلة الشائعة", id: "/faq" }, + { name: "تواصل معنا", id: "/contact" } ]; return ( @@ -44,23 +42,42 @@ export default function ContactPage() { logoAlt="KeyQuest logo futuristic neon" navItems={navItems} button={{ - text: "ابدأ الآن", href: "/learn"}} + text: "ابدأ الآن", href: "/learn" + }} /> -
-

تواصل معنا

- {/* Content for contact page would go here if a component was available. */} +
+

تواصل معنا

+

لأي استفسارات أو دعم، لا تتردد في التواصل معنا.

+
+
+
+ + +
+
+ + +
+
+ + +
+ +
+
- {/* Footer component not found in registry. */}