diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ab5f610..251cd63 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,201 +1,124 @@ -"use client"; +'use client'; -import Link from "next/link"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import AboutMetric from "@/components/sections/about/AboutMetric"; -import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; -import BlogCardTwo from "@/components/sections/blog/BlogCardTwo"; -import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Briefcase, Target, Users, TrendingUp } from "lucide-react"; - -export default function AboutPage() { - const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Blog", id: "blog" }, - { name: "Contact", id: "contact" }, - ]; - - const footerColumns = [ - { - title: "Quick Links", - items: [ - { label: "Home", href: "/" }, - { label: "About Us", href: "/about" }, - { label: "Services", href: "/" }, - { label: "Blog", href: "/" }, - ], - }, - { - title: "Company", - items: [ - { label: "Careers", href: "/careers" }, - { label: "Contact Us", href: "/contact" }, - { label: "Industries", href: "/industries" }, - { label: "Support", href: "#" }, - ], - }, - { - title: "Connect", - items: [ - { label: "LinkedIn", href: "https://linkedin.com" }, - { label: "Facebook", href: "https://facebook.com" }, - { label: "Twitter", href: "https://twitter.com" }, - { label: "Email", href: "mailto:info@nexorasolutions.com" }, - ], - }, - ]; +import { ThemeProvider } from '@/components/theme-provider'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import TextAbout from '@/components/sections/about/TextAbout'; +import TeamCardOne from '@/components/sections/team/TeamCardOne'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; +const AboutPage = () => { return ( - {/* Navbar */} - + - {/* About Mission & Vision */} -
- +
- {/* Client Success Stories */} -
- + +
+ + {/* Team Section */} +
+
- - {/* Industry Insights & Resources */} -
- -
- - {/* Footer */} -
); -} \ No newline at end of file +}; + +export default AboutPage;