Switch to version 2: added src/app/about/page.tsx

This commit is contained in:
2026-03-29 04:05:10 +00:00
parent c28cc31f16
commit 6cf66e5e25

67
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,67 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { Info } from 'lucide-react';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="largeSmallSizeMediumTitles"
background="aurora"
cardStyle="outline"
primaryButtonStyle="gradient"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/#contact" },
]}
brandName="MYKing & Associates"
/>
</div>
<div id="about" data-section="about">
<TestimonialAboutCard
tag="Our Story"
title="About Our Firm"
description="With over 30 years of experience, we provide expert tax and business consulting tailored to your unique financial needs."
subdescription="Our commitment to excellence drives every decision we make for our clients."
icon={Info}
videoSrc="https://www.w3schools.com/html/mov_bbb.mp4"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
columns={[
{ title: "Links", items: [
{ label: "Services", href: "/#services" },
{ label: "Contact", href: "/#contact" }
]},
{ title: "Social", items: [
{ label: "Instagram", href: "https://instagram.com/mykingassociates" },
{ label: "Facebook", href: "https://facebook.com/mykingassociates" }
]}
]}
copyrightText="© 2020 by MYKing & Associates, LLC"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}