Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-21 21:20:06 +00:00
5 changed files with 64 additions and 25 deletions

View File

@@ -94,7 +94,7 @@ export default function AboutPage() {
description="Consultify combines deep expertise in audit, valuation, and financial management with a commitment to delivering transformative results."
subdescription="Our team of certified professionals brings decades of experience across industries, helping businesses navigate complex financial challenges and unlock growth opportunities."
icon={Shield}
imageSrc="http://img.b2bpic.net/free-photo/victorius-mixraced-startup-team-overjoyed-conference-room-after-great-business-project_482257-5092.jpg"
imageSrc="http://img.b2bpic.net/free-photo/victorius-mixraced-startup-team-overjoyed-conference-room-after-great-business-project_482257-5092.jpg?_wi=2"
imageAlt="professional consulting team collaboration diversity"
mediaAnimation="opacity"
useInvertedBackground={false}
@@ -117,7 +117,7 @@ export default function AboutPage() {
title: "Audit Assistance",
subtitle: "Comprehensive auditing",
description: "Independent and rigorous audits ensuring compliance, transparency, and financial integrity for stakeholder confidence.",
imageSrc: "http://img.b2bpic.net/free-photo/secretary-writing-notebook_1098-1815.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/secretary-writing-notebook_1098-1815.jpg?_wi=2",
},
{
id: 2,
@@ -125,7 +125,7 @@ export default function AboutPage() {
title: "Strategic Planning",
subtitle: "Future-focused strategies",
description: "Data-driven strategic planning that aligns financial objectives with business goals for sustainable growth.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-office-desk-with-growth-chart-held-by-hands_23-2148780622.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-office-desk-with-growth-chart-held-by-hands_23-2148780622.jpg?_wi=2",
},
{
id: 3,
@@ -133,7 +133,7 @@ export default function AboutPage() {
title: "Business Valuation",
subtitle: "Accurate asset evaluation",
description: "Expert valuation services providing precise insights into company worth for M&A, financing, and strategic decisions.",
imageSrc: "http://img.b2bpic.net/free-photo/co-workers-with-pens-pointing-bar-chart_1098-728.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/co-workers-with-pens-pointing-bar-chart_1098-728.jpg?_wi=2",
},
{
id: 4,
@@ -141,7 +141,7 @@ export default function AboutPage() {
title: "Cash Flow Management",
subtitle: "Optimize liquidity",
description: "Strategic cash flow optimization ensuring operational efficiency and financial stability through expert management.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-businessman-pointing-financial-statistics_482257-8139.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-businessman-pointing-financial-statistics_482257-8139.jpg?_wi=2",
},
{
id: 5,
@@ -149,7 +149,7 @@ export default function AboutPage() {
title: "Mergers & Acquisitions",
subtitle: "End-to-end M&A support",
description: "Expert guidance through acquisition and merger processes, ensuring value creation and successful integration.",
imageSrc: "http://img.b2bpic.net/free-photo/business-team-senior-man-working-cafe_1262-1704.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-team-senior-man-working-cafe_1262-1704.jpg?_wi=2",
},
{
id: 6,
@@ -157,7 +157,7 @@ export default function AboutPage() {
title: "Tax Planning",
subtitle: "Optimize tax efficiency",
description: "Proactive tax strategies minimizing liabilities while ensuring compliance with regulations and maximizing returns.",
imageSrc: "http://img.b2bpic.net/free-photo/business-team-analyzing-financial-report_23-2151957112.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-team-analyzing-financial-report_23-2151957112.jpg?_wi=2",
},
]}
/>

View File

@@ -134,7 +134,7 @@ export default function ContactPage() {
tagAnimation="slide-up"
background={{ variant: "aurora" }}
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-team-sitting-table_23-2149271747.jpg"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-team-sitting-table_23-2149271747.jpg?_wi=3"
imageAlt="modern consulting office collaborative workspace"
mediaAnimation="opacity"
mediaPosition="right"

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Business Consulting & Financial Advisory Services",
description: "Expert audit assistance, business valuation, tax planning, and financial consulting. Trusted by 500+ companies for strategic financial solutions.",
keywords: "audit assistance, business valuation, tax planning, financial consulting, cash flow management, M&A advisory",
metadataBase: new URL("https://consultify.com"),
alternates: {
canonical: "https://consultify.com",
},
openGraph: {
title: "Business Consulting & Financial Advisory Services",
description: "Expert audit assistance, business valuation, tax planning, and financial consulting.",
url: "https://consultify.com",
siteName: "Consultify",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/young-executive-holding-pointing-laptop_1098-4094.jpg",
alt: "Professional consulting services",
},
],
},
twitter: {
card: "summary_large_image",
title: "Business Consulting & Financial Advisory Services",
description: "Expert audit assistance, business valuation, tax planning, and financial consulting.",
images: ["http://img.b2bpic.net/free-photo/young-executive-holding-pointing-laptop_1098-4094.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -128,7 +128,7 @@ export default function HomePage() {
description="Consultify combines deep expertise in audit, valuation, and financial management with a commitment to delivering transformative results."
subdescription="Our team of certified professionals brings decades of experience across industries, helping businesses navigate complex financial challenges and unlock growth opportunities."
icon={Shield}
imageSrc="http://img.b2bpic.net/free-photo/victorius-mixraced-startup-team-overjoyed-conference-room-after-great-business-project_482257-5092.jpg"
imageSrc="http://img.b2bpic.net/free-photo/victorius-mixraced-startup-team-overjoyed-conference-room-after-great-business-project_482257-5092.jpg?_wi=1"
imageAlt="Professional consulting team collaboration"
mediaAnimation="opacity"
useInvertedBackground={false}
@@ -302,7 +302,7 @@ export default function HomePage() {
tagAnimation="slide-up"
background={{ variant: "aurora" }}
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-team-sitting-table_23-2149271747.jpg"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-team-sitting-table_23-2149271747.jpg?_wi=1"
imageAlt="Modern consulting office with collaborative workspace"
mediaAnimation="opacity"
mediaPosition="right"

View File

@@ -96,7 +96,7 @@ export default function ServicesPage() {
title: "Audit Assistance",
subtitle: "Comprehensive auditing",
description: "Independent and rigorous audits ensuring compliance, transparency, and financial integrity for stakeholder confidence.",
imageSrc: "http://img.b2bpic.net/free-photo/secretary-writing-notebook_1098-1815.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/secretary-writing-notebook_1098-1815.jpg?_wi=1",
},
{
id: 2,
@@ -104,7 +104,7 @@ export default function ServicesPage() {
title: "Strategic Planning",
subtitle: "Future-focused strategies",
description: "Data-driven strategic planning that aligns financial objectives with business goals for sustainable growth.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-office-desk-with-growth-chart-held-by-hands_23-2148780622.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-office-desk-with-growth-chart-held-by-hands_23-2148780622.jpg?_wi=1",
},
{
id: 3,
@@ -112,7 +112,7 @@ export default function ServicesPage() {
title: "Business Valuation",
subtitle: "Accurate asset evaluation",
description: "Expert valuation services providing precise insights into company worth for M&A, financing, and strategic decisions.",
imageSrc: "http://img.b2bpic.net/free-photo/co-workers-with-pens-pointing-bar-chart_1098-728.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/co-workers-with-pens-pointing-bar-chart_1098-728.jpg?_wi=1",
},
{
id: 4,
@@ -120,7 +120,7 @@ export default function ServicesPage() {
title: "Cash Flow Management",
subtitle: "Optimize liquidity",
description: "Strategic cash flow optimization ensuring operational efficiency and financial stability through expert management.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-businessman-pointing-financial-statistics_482257-8139.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-businessman-pointing-financial-statistics_482257-8139.jpg?_wi=1",
},
{
id: 5,
@@ -128,7 +128,7 @@ export default function ServicesPage() {
title: "Mergers & Acquisitions",
subtitle: "End-to-end M&A support",
description: "Expert guidance through acquisition and merger processes, ensuring value creation and successful integration.",
imageSrc: "http://img.b2bpic.net/free-photo/business-team-senior-man-working-cafe_1262-1704.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-team-senior-man-working-cafe_1262-1704.jpg?_wi=1",
},
{
id: 6,
@@ -136,7 +136,7 @@ export default function ServicesPage() {
title: "Tax Planning",
subtitle: "Optimize tax efficiency",
description: "Proactive tax strategies minimizing liabilities while ensuring compliance with regulations and maximizing returns.",
imageSrc: "http://img.b2bpic.net/free-photo/business-team-analyzing-financial-report_23-2151957112.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-team-analyzing-financial-report_23-2151957112.jpg?_wi=1",
},
]}
/>
@@ -195,7 +195,7 @@ export default function ServicesPage() {
tagAnimation="slide-up"
background={{ variant: "aurora" }}
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-team-sitting-table_23-2149271747.jpg"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-team-sitting-table_23-2149271747.jpg?_wi=2"
imageAlt="Modern consulting office with collaborative workspace"
mediaAnimation="opacity"
mediaPosition="right"