Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b44af037a9 | |||
| a697ce2926 | |||
| cfb61f5199 | |||
| 8f42581f6c | |||
| 2fee932df6 | |||
| 13615bc290 | |||
| 89d41e0a88 | |||
| 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 "@/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={{
|
||||
|
||||
@@ -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"},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user