Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d722f20a3 | |||
| a06cefe9f3 | |||
| eea8fe034e | |||
| ab2dde9617 | |||
| 241d238b45 | |||
| 6490695714 |
57
src/app/about/page.tsx
Normal file
57
src/app/about/page.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -35,6 +35,7 @@ export default function LandingPage() {
|
|||||||
{ name: "التجربة", id: "input" },
|
{ name: "التجربة", id: "input" },
|
||||||
{ name: "آلية العمل", id: "features" },
|
{ name: "آلية العمل", id: "features" },
|
||||||
{ name: "النتائج", id: "results" },
|
{ name: "النتائج", id: "results" },
|
||||||
|
{ name: "من نحن", id: "/about" },
|
||||||
{ name: "اتصل بنا", id: "contact" },
|
{ name: "اتصل بنا", id: "contact" },
|
||||||
]}
|
]}
|
||||||
brandName="Ineffable Search AI"
|
brandName="Ineffable Search AI"
|
||||||
|
|||||||
Reference in New Issue
Block a user