112 lines
5.2 KiB
TypeScript
112 lines
5.2 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
|
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
|
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
|
import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow';
|
|
import { BookOpen, Globe, Users, Target, Zap } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="expand-hover"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="mediumSmall"
|
|
sizing="large"
|
|
background="grid"
|
|
cardStyle="glass-depth"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleCentered
|
|
navItems={[
|
|
{ name: "الرئيسية", id: "hero" },
|
|
{ name: "الخدمات", id: "features" },
|
|
{ name: "تطور الشخصيات", id: "character-arcs" },
|
|
{ name: "تطور القصة", id: "story-development" },
|
|
{ name: "تواصل معنا", id: "contact" },
|
|
]}
|
|
brandName="مساعدك الإلكتروني"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardRotatedCarousel
|
|
background={{ variant: "rotated-rays-animated-grid" }}
|
|
title="مساعدك الإلكتروني الذكي"
|
|
description="حلول برمجية ذكية لترجمة وتطوير مهاراتك الدراسية وحل جميع استفساراتك اليومية بسرعة."
|
|
carouselItems={Array.from({length: 6}).map((_, i) => ({ id: `${i+1}`, imageSrc: "http://img.b2bpic.net/free-photo/digital-world-map-hologram-blue-background_1379-900.jpg" }))}
|
|
/>
|
|
</div>
|
|
|
|
<div id="character-arcs" data-section="character-arcs">
|
|
<FeatureCardTwelve
|
|
animationType="slide-up"
|
|
title="تطور الشخصيات"
|
|
description="تابع رحلة نمو الشخصيات الرئيسية عبر فصول القصة وتطوراتها النفسية."
|
|
textboxLayout="split"
|
|
features={[
|
|
{ id: "c1", label: "الشخصية 1", title: "البطل", items: ["البداية في القرية", "مواجهة التحدي", "النضج الكامل"] },
|
|
{ id: "c2", label: "الشخصية 2", title: "المساعد", items: ["دعم البطل", "اكتشاف القدرات", "الاستقلال الذاتي"] }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="story-development" data-section="story-development">
|
|
<TimelineProcessFlow
|
|
title="مسار تطور القصة"
|
|
description="أهم المحطات والتحولات في الحبكة الروائية والجانب الفلسفي."
|
|
textboxLayout="split"
|
|
animationType="slide-up"
|
|
items={[
|
|
{ content: "البداية والتمهيد", media: <Target className="w-12 h-12" />, reverse: false },
|
|
{ content: "تصاعد الأحداث", media: <Zap className="w-12 h-12" />, reverse: true },
|
|
{ content: "النهاية والنتائج", media: <Globe className="w-12 h-12" />, reverse: false }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureCardTwelve
|
|
animationType="slide-up"
|
|
textboxLayout="split"
|
|
features={[
|
|
{ id: "f1", label: "الترجمة", title: "ترجمة فورية", items: ["دعم لغات متعددة", "دقة لغوية عالية"] },
|
|
{ id: "f2", label: "التعليم", title: "دعم تعليمي", items: ["شروحات مبسطة", "تلخيص المواد"] },
|
|
{ id: "f3", label: "ذكاء", title: "حلول ذكية", items: ["إجابات دقيقة", "حل المشكلات"] },
|
|
]}
|
|
title="خدماتنا الذكية"
|
|
description="نحن هنا لتبسيط حياتك اليومية."
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactSplitForm
|
|
title="تواصل معنا"
|
|
description="هل لديك استفسار آخر؟ أرسل لنا رسالة."
|
|
inputs={[{ name: "name", type: "text", placeholder: "الاسم الكامل" }, { name: "email", type: "email", placeholder: "البريد الإلكتروني" }]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoEmphasis
|
|
columns={[{ items: [{ label: "الرئيسية", href: "#hero" }, { label: "الخدمات", href: "#features" }] }]}
|
|
logoText="مساعدك الذكي"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |