Update src/app/about/page.tsx

This commit is contained in:
2026-03-31 21:20:52 +00:00
parent 448525b958
commit d51e5849ef

View File

@@ -1,25 +1,18 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Users } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="Masi Digital"
button={{ text: "Get a Free Preview", href: "/contact" }}
/>
<TestimonialAboutCard
tag="Our Story"
title="Built for Long Island Businesses"
description="Masi Digital was founded on the principle that local businesses deserve the same technical sophistication as global corporations."
subdescription="We combine modern web design with cutting-edge AI systems to save you time and maximize revenue."
icon={Users}
/>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="Masi Digital"
/>
</div>
<FooterBaseCard
logoText="Masi Digital"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] }]}