Merge version_1 into main #1
@@ -6,7 +6,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -21,151 +21,52 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Faith Tax & Accounting"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Faith Tax & Accounting"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services-list" data-section="services-list">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Tax Planning",
|
||||
price: "Custom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-business-ladies-watching-discussing-content-laptop-while-sitting-table-with-cups-coffee-meeting-room-wide-shot-teamwork-communication-concept_74855-11964.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Corporate Accounting",
|
||||
price: "Custom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-boss-manager-discussing-report-talking-while-sitting-standing-workplace-with-panoramic-window-business-communication-concept_74855-11957.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Audit Support",
|
||||
price: "Custom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-working-late-night-office_1303-27104.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Payroll Management",
|
||||
price: "Custom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-school-classroom-future-students_23-2150906110.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Strategic Advising",
|
||||
price: "Custom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/financial-experts_1098-12913.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Bookkeeping",
|
||||
price: "Custom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-business-lady-female-director-sitting-office-desk-discussing-results-planning-work-group-meeting-with-coworkers-working-together-office_141793-21302.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Expert Services"
|
||||
description="Comprehensive accounting solutions designed to empower your business."
|
||||
/>
|
||||
</div>
|
||||
<div id="services-list" data-section="services-list">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Our Expert Services"
|
||||
description="Comprehensive accounting solutions designed to empower your business."
|
||||
products={[
|
||||
{ id: "1", name: "Tax Planning", price: "Custom", variant: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/serious-business-ladies-watching-discussing-content-laptop-while-sitting-table-with-cups-coffee-meeting-room-wide-shot-teamwork-communication-concept_74855-11964.jpg" },
|
||||
{ id: "2", name: "Corporate Accounting", price: "Custom", variant: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/serious-boss-manager-discussing-report-talking-while-sitting-standing-workplace-with-panoramic-window-business-communication-concept_74855-11957.jpg" },
|
||||
{ id: "3", name: "Audit Support", price: "Custom", variant: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-working-late-night-office_1303-27104.jpg" },
|
||||
{ id: "4", name: "Payroll Management", price: "Custom", variant: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-school-classroom-future-students_23-2150906110.jpg" },
|
||||
{ id: "5", name: "Strategic Advising", price: "Custom", variant: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/financial-experts_1098-12913.jpg" },
|
||||
{ id: "6", name: "Bookkeeping", price: "Custom", variant: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/young-business-lady-female-director-sitting-office-desk-discussing-results-planning-work-group-meeting-with-coworkers-working-together-office_141793-21302.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Specialized Solutions"
|
||||
description="Tailored packages for growing enterprises."
|
||||
products={[
|
||||
{
|
||||
id: "s1",
|
||||
name: "Enterprise Tax",
|
||||
price: "Custom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-office-interior-design_23-2151826270.jpg",
|
||||
},
|
||||
{
|
||||
id: "s2",
|
||||
name: "Non-Profit Audit",
|
||||
price: "Custom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/managers-discussing-reports-with-boss-sitting-meeting-table-with-monitor-holding-documents-business-meeting-teamwork-concept_74855-11867.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Faith Tax & Accounting"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Tax Strategy",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Accounting",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Faith Tax & Accounting Services, Inc."
|
||||
/>
|
||||
</div>
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Specialized Solutions"
|
||||
description="Tailored packages for growing enterprises."
|
||||
products={[
|
||||
{ id: "s1", name: "Enterprise Tax", price: "Custom", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-office-interior-design_23-2151826270.jpg" },
|
||||
{ id: "s2", name: "Non-Profit Audit", price: "Custom", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/managers-discussing-reports-with-boss-sitting-meeting-table-with-monitor-holding-documents-business-meeting-teamwork-concept_74855-11867.jpg" },
|
||||
{ id: "s3", name: "General Advisory", price: "Custom", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/interior-part-modern-open-space-office_181624-20722.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user