Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-05-14 16:31:44 +00:00
2 changed files with 47 additions and 4 deletions

43
src/app/login/page.tsx Normal file
View File

@@ -0,0 +1,43 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactForm from '@/components/form/ContactForm';
export default function LoginPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="aurora"
cardStyle="glass-elevated"
primaryButtonStyle="shadow"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "الرئيسية", id: "/" },
{ name: "تسجيل الدخول", id: "/login" },
]}
brandName="المهندس"
/>
<div className="min-h-screen flex items-center justify-center p-8">
<ContactForm
title="تسجيل الدخول"
description="سجل دخولك عبر جوجل للوصول إلى تحديات المهندس"
tag="دخول"
buttonText="الدخول عبر جوجل"
onSubmit={(email) => console.log("Auth flow initiated for: ", email)}
centered={true}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -61,21 +61,21 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "الألعاب التنافسية", description: "مجموعة متنوعة من الألعاب لزيادة مهاراتك وجمع النقاط.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/phone-icon-front-side-with-white-background_187299-39933.jpg", imageAlt: "3d puzzle game" },
title: "الألعاب التنافسية", description: "مجموعة متنوعة من الألعاب التفاعلية مع تتبع فوري للنتيجة وحالة اللعب.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/phone-icon-front-side-with-white-background_187299-39933.jpg", imageAlt: "3d puzzle game" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/3d-view-puzzle-pieces_23-2150499224.jpg", imageAlt: "3d puzzle game" }
},
{
title: "عجلة الحظ اليومية", description: "جرب حظك كل 24 ساعة للفوز بجوائز إضافية ونقاط مضاعفة.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg", imageAlt: "3d puzzle game" },
title: "عجلة الحظ اليومية", description: "نظام سحب عشوائي تفاعلي يحدد الجوائز بناءً على خوارزمية منطقية.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg", imageAlt: "3d puzzle game" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/8-bits-cars-gaming-assets_23-2151143796.jpg", imageAlt: "3d puzzle game" }
},
{
title: "نظام النقاط الذكي", description: "احصل على 200 نقطة يومياً من خلال نشاطك في الموقع.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/view-3d-arcade-game-box_23-2151005754.jpg", imageAlt: "3d puzzle game" },
title: "نظام النقاط الذكي", description: "لوحة تحكم كاملة تدير رصيد المستخدم وحالة الجلسات التفاعلية.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/view-3d-arcade-game-box_23-2151005754.jpg", imageAlt: "3d puzzle game" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-vector/gradient-futuristic-infographic_23-2148459379.jpg", imageAlt: "3d puzzle game" }
}
]}
showStepNumbers={true}
title="مميزات منصة المهندس"
description=حديات يومية للحصول على 200 نقطة وعجلة حظ تفاعلية."
description=طوير شامل لأنظمة اللعب التفاعلية وضمان تجربة مستخدم ديناميكية."
/>
</div>