Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a06cefe9f3 | |||
| eea8fe034e | |||
| ab2dde9617 | |||
| a9da349722 | |||
| 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: "features" },
|
||||
{ name: "النتائج", id: "results" },
|
||||
{ name: "من نحن", id: "/about" },
|
||||
{ name: "اتصل بنا", id: "contact" },
|
||||
]}
|
||||
brandName="Ineffable Search AI"
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #000000;
|
||||
--card: #0c0c0c;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #106EFB;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #000000;
|
||||
--secondary-cta-text: #ffffff;
|
||||
--accent: #535353;
|
||||
--background-accent: #106EFB;
|
||||
--background: #f6f0e9;
|
||||
--card: #efe7dd;
|
||||
--foreground: #2b180a;
|
||||
--primary-cta: #2b180a;
|
||||
--primary-cta-text: #f6f0e9;
|
||||
--secondary-cta: #efe7dd;
|
||||
--secondary-cta-text: #2b180a;
|
||||
--accent: #94877c;
|
||||
--background-accent: #afa094;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user