Merge version_1 into main #1

Merged
bender merged 2 commits from version_1 into main 2026-06-06 08:31:25 +00:00
2 changed files with 31 additions and 15 deletions

View File

@@ -77,10 +77,10 @@ export default function DashboardPage() {
title="Recent Client & System Activity"
description="Stay updated with the latest movements across your client portfolio and platform."
features={[
{ id: "a1", title: "New document from Quantum Tech Solutions", tags: ["Document", "Income"], imageSrc: "http://img.b2bpic.net/free-photo/business-woman-hand-with-financial-charts-laptop-table_1232-4333.jpg", imageAlt: "New invoice document" },
{ id: "a1", title: "New document from Quantum Tech Solutions", tags: ["Document", "Income"], imageSrc: "http://img.b2bpic.net/free-photo/business-woman-hand-with-financial-charts-laptop-table_1232-4333.jpg?_wi=1", imageAlt: "New invoice document" },
{ id: "a2", title: "Message from Greenwood Cycles Ltd", tags: ["Communication", "Query"], imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-speech-therapy-logo_23-2149181077.jpg", imageAlt: "New client message" },
{ id: "a3", title: "Bookkeeping for Harbour & Co. due soon", tags: ["Task", "Deadline"], imageSrc: "http://img.b2bpic.net/free-vector/sacred-shape-poster_1017-2705.jpg", imageAlt: "Bookkeeping task reminder" },
{ id: "a4", title: "Account statement uploaded for Peak Advisory", tags: ["Document", "Bank"], imageSrc: "http://img.b2bpic.net/free-photo/man-looking-bill-energy-crisis_23-2150061837.jpg", imageAlt: "Bank statement uploaded" },
{ id: "a4", title: "Account statement uploaded for Peak Advisory", tags: ["Document", "Bank"], imageSrc: "http://img.b2bpic.net/free-photo/man-looking-bill-energy-crisis_23-2150061837.jpg?_wi=1", imageAlt: "Bank statement uploaded" },
]}
animationType="slide-up"
textboxLayout="default"
@@ -94,12 +94,12 @@ export default function DashboardPage() {
title="AI-Assisted Bookkeeping Tool"
description="Upload statements, see extracted data, categorise transactions, and flag for review. AI suggestions are provided for efficiency, but always require accountant review."
products={[
{ id: "bk1", name: "Bank Statement - HSBC 2024 Q1", price: "£12,345.00", imageSrc: "http://img.b2bpic.net/free-photo/man-looking-bill-energy-crisis_23-2150061837.jpg", imageAlt: "HSBC bank statement" },
{ id: "bk2", name: "Invoice - Supplier A (Mar 2024)", price: "£560.00", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-hand-with-financial-charts-laptop-table_1232-4333.jpg", imageAlt: "Supplier invoice" },
{ id: "bk3", name: "Credit Card Statement - Barclaycard", price: "£890.50", imageSrc: "http://img.b2bpic.net/free-photo/man-looking-bill-energy-crisis_23-2150061837.jpg", imageAlt: "Barclaycard statement" },
{ id: "bk4", name: "Payroll Report - April 2024", price: "£4,500.00", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-hand-with-financial-charts-laptop-table_1232-4333.jpg", imageAlt: "Payroll report" },
{ id: "bk5", name: "Receipts Batch - May 2024", price: "£320.15", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-hand-with-financial-charts-laptop-table_1232-4333.jpg", imageAlt: "Batch of receipts" },
{ id: "bk6", name: "Utilities Bill - June 2024", price: "£180.00", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-hand-with-financial-charts-laptop-table_1232-4333.jpg", imageAlt: "Utilities bill" },
{ id: "bk1", name: "Bank Statement - HSBC 2024 Q1", price: "£12,345.00", imageSrc: "http://img.b2bpic.net/free-photo/man-looking-bill-energy-crisis_23-2150061837.jpg?_wi=2", imageAlt: "HSBC bank statement" },
{ id: "bk2", name: "Invoice - Supplier A (Mar 2024)", price: "£560.00", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-hand-with-financial-charts-laptop-table_1232-4333.jpg?_wi=2", imageAlt: "Supplier invoice" },
{ id: "bk3", name: "Credit Card Statement - Barclaycard", price: "£890.50", imageSrc: "http://img.b2bpic.net/free-photo/man-looking-bill-energy-crisis_23-2150061837.jpg?_wi=3", imageAlt: "Barclaycard statement" },
{ id: "bk4", name: "Payroll Report - April 2024", price: "£4,500.00", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-hand-with-financial-charts-laptop-table_1232-4333.jpg?_wi=3", imageAlt: "Payroll report" },
{ id: "bk5", name: "Receipts Batch - May 2024", price: "£320.15", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-hand-with-financial-charts-laptop-table_1232-4333.jpg?_wi=4", imageAlt: "Batch of receipts" },
{ id: "bk6", name: "Utilities Bill - June 2024", price: "£180.00", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-hand-with-financial-charts-laptop-table_1232-4333.jpg?_wi=5", imageAlt: "Utilities bill" },
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"

View File

@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
@@ -8,19 +9,34 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
title: "Nivdan - AI-Assisted Accounting Workspace for UK Accountants", description: "Nivdan is an AI-powered accounting platform for UK accountants and small businesses. Manage clients, documents, communication, and bookkeeping in one secure, professional workspace. Streamline your practice.", keywords: "AI accounting, accounting platform UK, client management, document collection, bookkeeping software, SaaS accounting, Nivdan, small business accounting", metadataBase: new URL("https://www.nivdan.com"),
openGraph: {
title: "Nivdan - AI-Assisted Accounting Workspace", description: "Nivdan is an AI-powered accounting platform for UK accountants and small businesses. Manage clients, documents, communication, and bookkeeping in one secure, professional workspace. Streamline your practice.", url: "https://www.nivdan.com", siteName: "Nivdan", images: [
{
url: "http://img.b2bpic.net/free-photo/man-looking-bill-energy-crisis_23-2150061825.jpg", alt: "Nivdan dashboard screenshot"},
],
type: "website"},
twitter: {
card: "summary_large_image", title: "Nivdan - AI-Assisted Accounting Workspace", description: "Nivdan is an AI-powered accounting platform for UK accountants and small businesses. Manage clients, documents, communication, and bookkeeping in one secure, professional workspace. Streamline your practice.", images: ["http://img.b2bpic.net/free-photo/man-looking-bill-energy-crisis_23-2150061825.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
@@ -32,7 +48,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}