16 Commits

Author SHA1 Message Date
b44af037a9 Remove watermark 2026-04-02 22:28:55 +00:00
a697ce2926 Update src/app/about/page.tsx 2026-03-29 03:24:01 +00:00
cfb61f5199 Update src/app/about/page.tsx 2026-03-29 03:23:32 +00:00
8f42581f6c Update src/app/about/page.tsx 2026-03-29 03:23:04 +00:00
2fee932df6 Update src/app/about/page.tsx 2026-03-29 03:22:34 +00:00
13615bc290 Update src/app/layout.tsx 2026-03-29 03:22:07 +00:00
89d41e0a88 Update src/app/about/page.tsx 2026-03-29 03:22:06 +00:00
ab1e481ee5 Update src/app/page.tsx 2026-03-29 03:21:40 +00:00
6e2b28c3d6 Add src/app/about/page.tsx 2026-03-29 03:21:40 +00:00
699195fa7f Merge version_1 into main
Merge version_1 into main
2026-03-29 03:17:00 +00:00
d744170182 Merge version_1 into main
Merge version_1 into main
2026-03-29 03:16:46 +00:00
488594dc6b Merge version_1 into main
Merge version_1 into main
2026-03-29 03:15:14 +00:00
d4b2c10ec0 Merge version_1 into main
Merge version_1 into main
2026-03-29 03:09:55 +00:00
d0eb929d77 Merge version_1 into main
Merge version_1 into main
2026-03-29 03:04:12 +00:00
9f2e949178 Merge version_1 into main
Merge version_1 into main
2026-03-29 03:03:48 +00:00
297a72016f Merge version_1 into main
Merge version_1 into main
2026-03-29 03:03:20 +00:00
3 changed files with 78 additions and 12 deletions

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>
);
}

View File

@@ -4,15 +4,14 @@ import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Playfair_Display } from "next/font/google";
export const metadata: Metadata = {
title: 'MYKing & Associates | Tax, Bookkeeping & Business Consulting',
description: 'Professional tax, bookkeeping, and business formation services in Indianapolis. Blessed 2BA Blessing!',
title: 'About Us | MYKing & Associates',
description: 'Learn about our 30+ years of experience in tax and business consulting.',
openGraph: {
"title": "MYKing & Associates",
"description": "Expert tax preparation, bookkeeping, and business consulting.",
@@ -38,7 +37,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${playfair.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{

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"},
],
},
{