183 lines
5.8 KiB
TypeScript
183 lines
5.8 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-magnetic"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="largeSmall"
|
|
background="none"
|
|
cardStyle="inset"
|
|
primaryButtonStyle="double-inset"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="medium"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
navItems={[
|
|
{
|
|
name: "Home",
|
|
id: "/",
|
|
},
|
|
{
|
|
name: "About Us",
|
|
id: "/about",
|
|
},
|
|
{
|
|
name: "Services",
|
|
id: "/services",
|
|
},
|
|
{
|
|
name: "Contact",
|
|
id: "/contact",
|
|
},
|
|
]}
|
|
brandName="B & B Business Services LLC"
|
|
button={{
|
|
text: "Get a Quote",
|
|
href: "/contact",
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services-breakdown" data-section="services-breakdown">
|
|
<ProductCardOne
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
gridVariant="three-columns-all-equal-width"
|
|
useInvertedBackground={false}
|
|
products={[
|
|
{
|
|
id: "s1",
|
|
name: "Individual Tax Services",
|
|
price: "Personalized",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/halloween-decor-white-table-black-surface_176420-9114.jpg",
|
|
imageAlt: "individual tax services documents calculator",
|
|
},
|
|
{
|
|
id: "s2",
|
|
name: "Business Tax Preparation",
|
|
price: "Custom Quote",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/unrecognizable-man-using-laptop-while-working-from-home-close-up-shot-mature-businessman-looking-laptop-screen-sitting-table-with-tablet-phone-it-digital-device-workplace-concept_74855-23825.jpg",
|
|
imageAlt: "business tax preparation forms laptop",
|
|
},
|
|
{
|
|
id: "s3",
|
|
name: "Payroll Management",
|
|
price: "Per Employee",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-sales-representative-going-through-work-papers-hispanic-business-manager-working-business-deal-from-home_662251-892.jpg",
|
|
imageAlt: "payroll management spreadsheet employees",
|
|
},
|
|
{
|
|
id: "s4",
|
|
name: "Bookkeeping & Accounting",
|
|
price: "Monthly Retainer",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/man-writting-keyboard_1150-78.jpg",
|
|
imageAlt: "bookkeeping accounting ledger data",
|
|
},
|
|
{
|
|
id: "s5",
|
|
name: "Business Advisory",
|
|
price: "By Project",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/3-young-workers-office_1301-5354.jpg",
|
|
imageAlt: "business advisory meeting financial growth",
|
|
},
|
|
{
|
|
id: "s6",
|
|
name: "Financial Statement Compilation",
|
|
price: "Fixed Fee",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-pen-financial-documents_1232-141.jpg",
|
|
imageAlt: "financial statement compilation report",
|
|
},
|
|
]}
|
|
title="Our Comprehensive Business Services"
|
|
description="We offer a full spectrum of financial services tailored to meet the diverse needs of small businesses and individuals, ensuring accuracy, compliance, and growth."
|
|
/>
|
|
</div>
|
|
|
|
<div id="affiliations" data-section="affiliations">
|
|
<SocialProofOne
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
names={[
|
|
"Washington Association of Accountants (WAA)",
|
|
"National Society of Accountants (NSA)",
|
|
"National Association of Enrolled Agents (NAEA)",
|
|
"Better Business Bureau",
|
|
"AICPA (American Institute of CPAs)",
|
|
"IRS Authorized e-File Provider",
|
|
"Chamber of Commerce",
|
|
]}
|
|
title="Industry Memberships & Affiliations"
|
|
description="As proud members of leading professional organizations, we adhere to the highest standards of ethics and expertise in the financial services industry."
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterMedia
|
|
imageSrc="http://img.b2bpic.net/free-vector/business-webinar-horizontal-banner-template-design_206725-647.jpg?_wi=3"
|
|
logoText="B & B Business Services LLC"
|
|
columns={[
|
|
{
|
|
title: "Company",
|
|
items: [
|
|
{
|
|
label: "About Us",
|
|
href: "/about",
|
|
},
|
|
{
|
|
label: "Services",
|
|
href: "/services",
|
|
},
|
|
{
|
|
label: "Team",
|
|
href: "/about#team",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Support",
|
|
items: [
|
|
{
|
|
label: "Contact",
|
|
href: "/contact",
|
|
},
|
|
{
|
|
label: "FAQ",
|
|
href: "/contact#faq",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Legal",
|
|
items: [
|
|
{
|
|
label: "Privacy Policy",
|
|
href: "#",
|
|
},
|
|
{
|
|
label: "Terms of Service",
|
|
href: "#",
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
copyrightText="© 2024 B & B Business Services LLC. All rights reserved."
|
|
imageAlt="subtle abstract pattern deep navy gold"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|