Compare commits
29 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 13af666b58 | |||
| b44af037a9 | |||
| e7bb23ef56 | |||
| 9d0cbc02b3 | |||
| 6cf66e5e25 | |||
| c28cc31f16 | |||
| 6dd36f77b9 | |||
| 37a69da846 | |||
| 33cbcf9a3e | |||
| a697ce2926 | |||
| bb9cf5780d | |||
| cfb61f5199 | |||
| ca50397552 | |||
| 8f42581f6c | |||
| 5ab48e13f7 | |||
| 2fee932df6 | |||
| e50c70954f | |||
| 13615bc290 | |||
| 89d41e0a88 | |||
| 7d4b177337 | |||
| ab1e481ee5 | |||
| 6e2b28c3d6 | |||
| 699195fa7f | |||
| d744170182 | |||
| 488594dc6b | |||
| d4b2c10ec0 | |||
| d0eb929d77 | |||
| 9f2e949178 | |||
| 297a72016f |
67
src/app/about/page.tsx
Normal file
67
src/app/about/page.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -4,15 +4,14 @@ import { Inter } from "next/font/google";
|
|||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import "@/lib/gsap-setup";
|
import "@/lib/gsap-setup";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Playfair_Display } from "next/font/google";
|
import { Playfair_Display } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'MYKing & Associates | Tax, Bookkeeping & Business Consulting',
|
title: 'About Us | MYKing & Associates',
|
||||||
description: 'Professional tax, bookkeeping, and business formation services in Indianapolis. Blessed 2BA Blessing!',
|
description: 'Learn about our 30+ years of experience in tax and business consulting.',
|
||||||
openGraph: {
|
openGraph: {
|
||||||
"title": "MYKing & Associates",
|
"title": "MYKing & Associates",
|
||||||
"description": "Expert tax preparation, bookkeeping, and business consulting.",
|
"description": "Expert tax preparation, bookkeeping, and business consulting.",
|
||||||
@@ -38,7 +37,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${playfair.variable} ${inter.variable} antialiased`}>
|
<body className={`${playfair.variable} ${inter.variable} antialiased`}>
|
||||||
<Tag />
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
|
|||||||
@@ -30,13 +30,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
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"
|
brandName="MYKing & Associates"
|
||||||
/>
|
/>
|
||||||
@@ -51,9 +51,9 @@ export default function LandingPage() {
|
|||||||
tag="Blessed 2BA Blessing!"
|
tag="Blessed 2BA Blessing!"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get Started", href: "#contact"},
|
text: "Get Started", href: "/#contact"},
|
||||||
{
|
{
|
||||||
text: "Our Services", href: "#services"},
|
text: "Our Services", href: "/#services"},
|
||||||
]}
|
]}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{
|
||||||
@@ -150,9 +150,9 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
title: "Links", items: [
|
title: "Links", items: [
|
||||||
{
|
{
|
||||||
label: "Services", href: "#services"},
|
label: "Services", href: "/#services"},
|
||||||
{
|
{
|
||||||
label: "Contact", href: "#contact"},
|
label: "Contact", href: "/#contact"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user