|
|
|
|
@@ -1,89 +0,0 @@
|
|
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
|
|
|
import SplitAbout from '@/components/sections/about/SplitAbout';
|
|
|
|
|
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
|
|
|
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|
|
|
|
import { Target, Eye, Sparkles } from "lucide-react";
|
|
|
|
|
|
|
|
|
|
export default function AboutPage() {
|
|
|
|
|
return (
|
|
|
|
|
<ThemeProvider
|
|
|
|
|
defaultButtonVariant="icon-arrow"
|
|
|
|
|
defaultTextAnimation="entrance-slide"
|
|
|
|
|
borderRadius="pill"
|
|
|
|
|
contentWidth="smallMedium"
|
|
|
|
|
sizing="largeSizeMediumTitles"
|
|
|
|
|
background="grid"
|
|
|
|
|
cardStyle="inset"
|
|
|
|
|
primaryButtonStyle="diagonal-gradient"
|
|
|
|
|
secondaryButtonStyle="radial-glow"
|
|
|
|
|
headingFontWeight="extrabold"
|
|
|
|
|
>
|
|
|
|
|
<ReactLenis root>
|
|
|
|
|
<div id="nav" data-section="nav">
|
|
|
|
|
<NavbarStyleFullscreen
|
|
|
|
|
navItems={[
|
|
|
|
|
{ name: "Home", id: "/" },
|
|
|
|
|
{ name: "About", id: "/about" },
|
|
|
|
|
{ name: "Features", id: "/features" },
|
|
|
|
|
{ name: "Contact", id: "/contact" },
|
|
|
|
|
]}
|
|
|
|
|
brandName="Nexus AI"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="who-we-are" data-section="who-we-are">
|
|
|
|
|
<SplitAbout
|
|
|
|
|
title="Who We Are"
|
|
|
|
|
description="Nexus AI is a premier development agency focused on accelerating enterprise innovation through cutting-edge AI architecture and custom software engineering."
|
|
|
|
|
imageSrc="http://img.b2bpic.net/free-photo/startup-cybersecurity-expert-looking-company-security-vulnerabilities_482257-125918.jpg"
|
|
|
|
|
imagePosition="left"
|
|
|
|
|
textboxLayout="split"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="mission-vision" data-section="mission-vision">
|
|
|
|
|
<FeatureCardTwentyOne
|
|
|
|
|
title="Our Core Direction"
|
|
|
|
|
description="The guiding principles that define our commitment to excellence and future-focused growth."
|
|
|
|
|
accordionItems={[
|
|
|
|
|
{ id: "m1", title: "Our Mission", content: "To empower businesses by bridging the gap between complex AI research and scalable, practical software solutions." },
|
|
|
|
|
{ id: "v1", title: "Our Vision", content: "To define the future of enterprise software, making advanced automation accessible and impactful for every industry." }
|
|
|
|
|
]}
|
|
|
|
|
imageSrc="http://img.b2bpic.net/free-photo/data-center-engineering-team-working-together-using-ai-visualization_482257-126733.jpg"
|
|
|
|
|
mediaPosition="right"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="why-choose-us" data-section="why-choose-us">
|
|
|
|
|
<SplitAbout
|
|
|
|
|
title="Why Choose Us"
|
|
|
|
|
description="We blend deep technical expertise with a relentless focus on client success."
|
|
|
|
|
bulletPoints={[
|
|
|
|
|
{ title: "Proven Expertise", description: "Years of experience delivering complex AI deployments.", icon: Sparkles },
|
|
|
|
|
{ title: "Strategic Alignment", description: "Solutions tailored to your specific business model.", icon: Target },
|
|
|
|
|
{ title: "Future-Proof", description: "Technology stacks that evolve with the changing landscape.", icon: Eye },
|
|
|
|
|
]}
|
|
|
|
|
imageSrc="http://img.b2bpic.net/free-photo/business-concept-with-progress-close-up_23-2149151161.jpg"
|
|
|
|
|
imagePosition="right"
|
|
|
|
|
textboxLayout="split"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
|
<FooterMedia
|
|
|
|
|
imageSrc="http://img.b2bpic.net/free-photo/light-blue-3d-abstract-wave-pattern_53876-95187.jpg"
|
|
|
|
|
logoText="Nexus AI"
|
|
|
|
|
columns={[
|
|
|
|
|
{ title: "Agency", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/#features" }] },
|
|
|
|
|
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</ReactLenis>
|
|
|
|
|
</ThemeProvider>
|
|
|
|
|
);
|
|
|
|
|
}
|