Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-05-14 01:37:30 +00:00
2 changed files with 58 additions and 0 deletions

57
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,57 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import TextAbout from '@/components/sections/about/TextAbout';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="medium"
background="fluid"
cardStyle="soft-shadow"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "التجربة", id: "/" },
{ name: "آلية العمل", id: "/" },
{ name: "النتائج", id: "/" },
{ name: "من نحن", id: "/about" },
{ name: "اتصل بنا", id: "/" },
]}
brandName="Ineffable Search AI"
/>
</div>
<div id="about" data-section="about" className="py-20">
<TextAbout
tag="حولنا"
title="مهمتنا في ترجمة المشاعر التجريدية إلى إبداع ملموس."
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Ineffable"
columns={[
{ items: [{ label: "عن الشركة" }, { label: "المنهجية" }] },
{ items: [{ label: "الشروط" }, { label: "الخصوصية" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "التجربة", id: "input" },
{ name: "آلية العمل", id: "features" },
{ name: "النتائج", id: "results" },
{ name: "من نحن", id: "/about" },
{ name: "اتصل بنا", id: "contact" },
]}
brandName="Ineffable Search AI"