Merge version_2 into main #8

Merged
bender merged 2 commits from version_2 into main 2026-03-29 03:21:43 +00:00
2 changed files with 71 additions and 8 deletions

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

@@ -0,0 +1,63 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
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-content" data-section="about-content">
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "About Our Firm" }]}
description="With over 30 years of experience, we provide expert tax and business consulting tailored to your unique financial needs."
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="MYKing & Associates, LLC"
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>
);
}

View File

@@ -30,13 +30,13 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home", id: "#hero"},
name: "Home", id: "/"},
{
name: "Services", id: "#services"},
name: "Services", id: "/#services"},
{
name: "About", id: "#about"},
name: "About", id: "/about"},
{
name: "Contact", id: "#contact"},
name: "Contact", id: "/#contact"},
]}
brandName="MYKing & Associates"
/>
@@ -51,9 +51,9 @@ export default function LandingPage() {
tag="Blessed 2BA Blessing!"
buttons={[
{
text: "Get Started", href: "#contact"},
text: "Get Started", href: "/#contact"},
{
text: "Our Services", href: "#services"},
text: "Our Services", href: "/#services"},
]}
mediaItems={[
{
@@ -150,9 +150,9 @@ export default function LandingPage() {
{
title: "Links", items: [
{
label: "Services", href: "#services"},
label: "Services", href: "/#services"},
{
label: "Contact", href: "#contact"},
label: "Contact", href: "/#contact"},
],
},
{