From 84bdd17e46bb4bc9684df2dae0c592b61deb0385 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:24:09 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4eaca9f..29846d6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,16 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Sparkles, ShieldCheck } from 'lucide-react'; +import { Sparkles } from 'lucide-react'; export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; @@ -60,14 +59,16 @@ export default function AboutPage() {
-