Files
16bcecb0-62b5-4c19-bcbb-c75…/src/app/about/page.tsx
2026-03-14 01:09:48 +00:00

178 lines
7.3 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Shield, Award } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Solutions", id: "solutions" },
{ name: "Contact", id: "contact" },
];
const footerColumns = [
{
title: "Solutions",
items: [
{ label: "SAP Implementation", href: "/" },
{ label: "System Migration", href: "/" },
{ label: "Cloud Solutions", href: "/" },
{ label: "IT Consulting", href: "/" },
],
},
{
title: "Company",
items: [
{ label: "About Us", href: "/about" },
{ label: "Our Services", href: "/" },
{ label: "Case Studies", href: "#" },
{ label: "Careers", href: "#" },
],
},
{
title: "Resources",
items: [
{ label: "Blog", href: "#" },
{ label: "Whitepapers", href: "#" },
{ label: "Events", href: "#" },
{ label: "Support", href: "#" },
],
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Contact Us", href: "#" },
{ label: "Sitemap", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="medium"
background="noiseDiagonalGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems}
brandName="Azmiq Technologies"
bottomLeftText="Transforming Enterprise Systems"
bottomRightText="hello@azmiqtech.com"
/>
</div>
<div id="about-main" data-section="about-main">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "About Azmiq Technologies - Our Expertise" },
]}
buttons={[
{ text: "Back to Home", href: "/" },
{ text: "Contact Us", href: "#" },
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="about-expertise" data-section="about-expertise">
<FeatureCardEight
title="Our Consulting Excellence"
description="With over 15 years of experience delivering enterprise IT and SAP solutions, Azmiq Technologies has earned the trust of Fortune 500 companies worldwide. Our dedicated team combines deep technical expertise with strategic business acumen."
tag="Industry Expertise",
tagIcon={Shield}
tagAnimation="slide-up"
buttons={[{ text: "Explore Our Services", href: "/" }]}
buttonAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: 1,
title: "Strategic Consulting",
description: "Deep industry knowledge and best practices help us design solutions that align with your business objectives. We partner with you to achieve sustainable competitive advantage through technology.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AulgeL7G9eQ6miXjqTPtDzogQH/professional-corporate-headshot-of-busin-1773450529203-67d4b7dd.png?_wi=2",
imageAlt: "Strategic consulting expertise",
},
{
id: 2,
title: "Technical Excellence",
description: "Our team of certified SAP architects and enterprise IT specialists brings proven methodologies and technical depth. We ensure every implementation meets the highest quality standards.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AulgeL7G9eQ6miXjqTPtDzogQH/professional-female-business-executive-p-1773450529801-dbeca3a0.png?_wi=2",
imageAlt: "Technical excellence team",
},
{
id: 3,
title: "Client Success Focus",
description: "Your success is our mission. From project initiation through ongoing support, we maintain unwavering commitment to your business outcomes and long-term success.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AulgeL7G9eQ6miXjqTPtDzogQH/professional-male-business-executive-por-1773450530092-4c8cb227.png?_wi=2",
imageAlt: "Client success focus",
},
]}
/>
</div>
<div id="about-testimonials" data-section="about-testimonials">
<TestimonialCardTwelve
testimonials={[
{
id: "1",
name: "Sarah Johnson",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AulgeL7G9eQ6miXjqTPtDzogQH/professional-corporate-headshot-of-busin-1773450529203-67d4b7dd.png?_wi=3",
imageAlt: "Sarah Johnson, CIO",
},
{
id: "2",
name: "Michael Chen",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AulgeL7G9eQ6miXjqTPtDzogQH/professional-female-business-executive-p-1773450529801-dbeca3a0.png?_wi=3",
imageAlt: "Michael Chen, VP Operations",
},
{
id: "3",
name: "Emma Williams",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AulgeL7G9eQ6miXjqTPtDzogQH/professional-male-business-executive-por-1773450530092-4c8cb227.png?_wi=3",
imageAlt: "Emma Williams, Director IT",
},
{
id: "4",
name: "David Martinez",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AulgeL7G9eQ6miXjqTPtDzogQH/professional-business-consultant-portrai-1773450531302-f79a110f.png?_wi=2",
imageAlt: "David Martinez, CTO",
},
]}
cardTitle="Azmiq's team demonstrates exceptional understanding of enterprise challenges. Their proactive approach and transparent communication made our transformation journey smooth and successful."
cardTag="Client Testimonials"
cardTagIcon={Award}
cardAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="footer-about" data-section="footer-about">
<FooterBaseCard
logoText="Azmiq Technologies"
columns={footerColumns}
copyrightText="© 2025 Azmiq Technologies. All rights reserved. Enterprise IT & SAP Consulting Excellence."
/>
</div>
</ThemeProvider>
);
}