diff --git a/eslint.config.mjs b/eslint.config.mjs
index 626ca82..fe19442 100644
--- a/eslint.config.mjs
+++ b/eslint.config.mjs
@@ -1,18 +1,15 @@
-import { defineConfig, globalIgnores } from 'eslint/config';
-import nextVitals from 'eslint-config-next/core-web-vitals';
-import nextTs from 'eslint-config-next/typescript';
+import eslintrcPkg from '/Volumes/SSD/Projects/Clients/Axil Accountants/node_modules/.pnpm/@eslint+eslintrc@3.3.3/node_modules/@eslint/eslintrc/dist/eslintrc.cjs';
+import { dirname } from 'path';
+import { fileURLToPath } from 'url';
-const eslintConfig = defineConfig([
- ...nextVitals,
- ...nextTs,
- // Override default ignores of eslint-config-next.
- globalIgnores([
- // Default ignores of eslint-config-next:
- '.next/**',
- 'out/**',
- 'build/**',
- 'next-env.d.ts',
- ]),
-]);
+const { FlatCompat } = eslintrcPkg;
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = dirname(__filename);
-export default eslintConfig;
+const compat = new FlatCompat({
+ baseDirectory: __dirname,
+});
+
+export default [
+ ...compat.extends('next/core-web-vitals', 'next/typescript'),
+];
diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..eab1143
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,241 @@
+import type { Metadata } from 'next';
+import Link from 'next/link';
+import { Header } from '@/components/layout/Header';
+import { Footer } from '@/components/layout/Footer';
+import { Button } from '@/components/ui/Button';
+import { FadeIn } from '@/components/ui/FadeIn';
+import { SpotlightCard } from '@/components/ui/SpotlightCard';
+import { CheckCircleIcon } from '@/components/ui/icons';
+
+export const metadata: Metadata = {
+ title: 'About Us — Axil Accountants',
+ description:
+ 'Meet the team behind Axil Accountants. ICAEW-certified accountants helping 500+ UK businesses grow since 2012.',
+};
+
+const VALUES = [
+ {
+ title: 'Transparency',
+ desc: "Fixed monthly fees with zero hidden charges. You always know exactly what you're paying and what you're getting.",
+ },
+ {
+ title: 'Proactivity',
+ desc: "We don't wait for problems to appear. We monitor your finances and flag issues before they become expensive surprises.",
+ },
+ {
+ title: 'Plain English',
+ desc: 'No jargon. No confusing tax speak. We explain everything in language that actually makes sense for business owners.',
+ },
+ {
+ title: 'Accountability',
+ desc: 'Your dedicated account manager is reachable when you need them — not hidden behind a call centre or ticket queue.',
+ },
+];
+
+const TEAM = [
+ {
+ name: 'James Whitfield',
+ role: 'Founder & Senior Accountant',
+ qual: 'ICAEW · ACA',
+ bg: '1B9AD6',
+ },
+ { name: 'Priya Sharma', role: 'Head of Tax', qual: 'ACCA · CTA', bg: '3CC68A' },
+ { name: 'Tom Aldridge', role: 'Payroll & VAT Specialist', qual: 'ATT', bg: '27A870' },
+];
+
+const STATS = [
+ { value: '500+', label: 'Clients served' },
+ { value: '£2M+', label: 'Tax saved for clients' },
+ { value: '98%', label: 'Client retention rate' },
+ { value: '2012', label: 'Year founded' },
+];
+
+export default function AboutPage() {
+ return (
+ <>
+
+
+ {/* Hero */}
+
+
+
+
+
+
+ About Axil
+
+
+ The accountants who work as hard as you do
+
+
+ Founded in 2012, Axil Accountants set out to do one thing differently: make
+ professional accounting accessible, affordable, and genuinely useful for every UK
+ business owner.
+
+
+
+
+
+
+
+ {/* Mission */}
+
+
+
+
+
+ Our mission
+
+
+ We believe every business deserves great accounting
+
+
+ For too long, small and medium UK businesses have been underserved by accounting
+ firms that are too big to care, or too small to be reliable. Axil was built to
+ fill that gap.
+
+
+ We combine the expertise and rigour of a top-tier firm with the personal service
+ and accessibility that growing businesses actually need. Your dedicated account
+ manager knows your business by name, not by number.
+
+ Every Axil client has a dedicated account manager. These are the experts behind
+ your finances.
+
+
+
+
+
+ {TEAM.map((member, i) => (
+
+
+
+
+ {member.name}
+
+
{member.role}
+
+ {member.qual}
+
+
+
+ ))}
+
+
+
+
+ {/* CTA */}
+
+
+
+
+ Ready to work with us?
+
+
+ Book a free consultation and find out how Axil can save your business time, money
+ and stress.
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/app/blog/[slug]/page.tsx b/src/app/blog/[slug]/page.tsx
new file mode 100644
index 0000000..2961ceb
--- /dev/null
+++ b/src/app/blog/[slug]/page.tsx
@@ -0,0 +1,438 @@
+import type { Metadata } from 'next';
+import Link from 'next/link';
+import { notFound } from 'next/navigation';
+import { Header } from '@/components/layout/Header';
+import { Footer } from '@/components/layout/Footer';
+import { Button } from '@/components/ui/Button';
+import { FadeIn } from '@/components/ui/FadeIn';
+import { SpotlightCard } from '@/components/ui/SpotlightCard';
+import { Tag } from '@/components/ui/Tag';
+
+const POSTS: Record<
+ string,
+ {
+ slug: string;
+ category: string;
+ categoryColor: 'green' | 'blue';
+ date: string;
+ readTime: string;
+ title: string;
+ excerpt: string;
+ author: string;
+ authorRole: string;
+ authorBg: string;
+ content: { heading: string; body: string }[];
+ }
+> = {
+ 'hmrc-making-tax-digital-guide': {
+ slug: 'hmrc-making-tax-digital-guide',
+ category: 'Tax',
+ categoryColor: 'green',
+ date: '12 Feb 2025',
+ readTime: '6 min',
+ title: 'Making Tax Digital: Everything UK Business Owners Need to Know',
+ excerpt:
+ "MTD is now mandatory for most VAT-registered businesses. Here's what it means for you and how to make sure you're compliant.",
+ author: 'Priya Sharma',
+ authorRole: 'Head of Tax · ACCA · CTA',
+ authorBg: '3CC68A',
+ content: [
+ {
+ heading: 'What is Making Tax Digital?',
+ body: "Making Tax Digital (MTD) is HMRC's initiative to move the UK tax system online. The goal is to reduce errors, improve record-keeping, and make it easier for businesses to stay on top of their tax affairs. For most VAT-registered businesses with a taxable turnover above the VAT threshold (£85,000), MTD for VAT has been mandatory since April 2019.",
+ },
+ {
+ heading: 'Who Does MTD Affect?',
+ body: 'From April 2022, MTD for VAT was extended to all VAT-registered businesses — even those voluntarily registered below the threshold. If you submit a VAT return, you must use MTD-compatible software to keep digital records and submit returns. MTD for Income Tax Self Assessment (ITSA) is the next phase, expected to roll out from April 2026 for sole traders and landlords with income over £50,000.',
+ },
+ {
+ heading: 'What Do You Need to Do?',
+ body: 'The key requirements are simple: keep digital records of all VAT transactions, use MTD-compatible software (such as Xero, QuickBooks, Sage or FreeAgent), and submit your VAT returns directly through that software. Paper records and manual spreadsheets alone are no longer acceptable — though a bridging solution that converts spreadsheet data to digital submissions is permitted.',
+ },
+ {
+ heading: 'Penalties for Non-Compliance',
+ body: "HMRC introduced a new points-based penalty system in January 2023. Each late submission earns one penalty point. When you hit a threshold (4 points for quarterly filers), you'll receive a £200 fine — plus £200 for every subsequent late submission. Separate penalties apply for late payment of VAT: 2% of unpaid VAT after 15 days, rising to 4% after 30 days, then 4% per annum thereafter.",
+ },
+ {
+ heading: 'How Axil Can Help',
+ body: "At Axil, we set up and manage MTD-compliant bookkeeping for all our clients as standard. We use cloud accounting software to keep your records up to date and handle VAT submissions on your behalf — so you're always compliant and never miss a deadline. If you're not sure whether you're currently compliant, get in touch for a free review.",
+ },
+ ],
+ },
+ 'limited-company-vs-sole-trader': {
+ slug: 'limited-company-vs-sole-trader',
+ category: 'Business',
+ categoryColor: 'blue',
+ date: '28 Jan 2025',
+ readTime: '8 min',
+ title: 'Limited Company vs Sole Trader: Which Is Right for Your Business?',
+ excerpt:
+ 'One of the most common questions from new business owners. We break down the tax implications, liability and admin for both structures.',
+ author: 'James Whitfield',
+ authorRole: 'Founder & Senior Accountant · ICAEW · ACA',
+ authorBg: '1B9AD6',
+ content: [
+ {
+ heading: 'The Core Difference',
+ body: 'A sole trader is the simplest business structure: you and your business are legally the same entity. A limited company, on the other hand, is a separate legal entity from its owners (shareholders and directors). This distinction has far-reaching implications for tax, liability, and administration.',
+ },
+ {
+ heading: 'Tax: Sole Trader',
+ body: "As a sole trader, your profits are taxed as personal income through Self Assessment. You'll pay Income Tax at 20%, 40% or 45% depending on your earnings, plus Class 2 and Class 4 National Insurance contributions. The simplicity is a genuine advantage at lower income levels — you'll spend less on accountancy fees and have fewer filing obligations.",
+ },
+ {
+ heading: 'Tax: Limited Company',
+ body: 'A limited company pays Corporation Tax on its profits — currently 19% for profits up to £50,000, rising to 25% for profits over £250,000 (with marginal relief in between). Directors typically pay themselves a combination of salary (up to the NI threshold) and dividends, which are taxed at lower rates than income. This can result in significant tax savings once profits exceed roughly £30,000–£40,000.',
+ },
+ {
+ heading: 'Liability',
+ body: "This is where limited companies offer a major advantage. As a sole trader, you're personally liable for all business debts — creditors can pursue your personal assets (home, savings) if the business fails. A limited company's liability is limited to the share capital, protecting your personal assets. Note that banks often require personal guarantees on business loans, which can reduce this protection.",
+ },
+ {
+ heading: 'Administration',
+ body: 'Sole trader: one Self Assessment tax return per year, straightforward record-keeping. Limited company: annual accounts filed with Companies House, Confirmation Statement, Corporation Tax return, potentially VAT returns and payroll (PAYE). The admin burden is genuinely higher — which is why a good accountant is especially valuable for limited company owners.',
+ },
+ {
+ heading: 'Our Recommendation',
+ body: "For most self-employed people earning under £30,000, sole trader is the most practical choice. Above £50,000 in consistent annual profit, the tax savings of a limited company usually outweigh the additional admin costs. Between those figures, it depends on your circumstances, risk tolerance, and growth plans. Book a free consultation and we'll run the numbers for your specific situation.",
+ },
+ ],
+ },
+ 'self-assessment-tips-2025': {
+ slug: 'self-assessment-tips-2025',
+ category: 'Tax',
+ categoryColor: 'green',
+ date: '10 Jan 2025',
+ readTime: '7 min',
+ title: '10 Self-Assessment Tips That Could Save You Thousands',
+ excerpt:
+ "Filing your self-assessment tax return? These allowances and deductions are commonly missed — even by people who've been filing for years.",
+ author: 'Priya Sharma',
+ authorRole: 'Head of Tax · ACCA · CTA',
+ authorBg: '3CC68A',
+ content: [
+ {
+ heading: '1. Claim Your Full Trading Allowance',
+ body: "The £1,000 trading allowance lets you earn up to £1,000 from self-employment without paying tax on it. If your gross trading income is under £1,000, you don't even need to file a return for that income. If it's over £1,000, you can simply deduct £1,000 instead of calculating actual expenses — useful if your expenses are modest.",
+ },
+ {
+ heading: "2. Don't Forget the Marriage Allowance",
+ body: "If you're married or in a civil partnership and one of you earns below the Personal Allowance (£12,570), you can transfer up to £1,260 of unused allowance to the higher earner — potentially saving up to £252 per year. You can also backdate claims up to 4 years.",
+ },
+ {
+ heading: '3. Claim All Allowable Business Expenses',
+ body: 'Many self-employed people underclaim expenses. Allowable costs include: office costs (stationery, phone bills), travel expenses (not commuting), clothing (uniforms only), staff costs, advertising and marketing, professional fees (accountants, solicitors), and premises costs. If you work from home, you can claim a proportion of household bills.',
+ },
+ {
+ heading: '4. Use Your Capital Gains Tax Allowance',
+ body: "The Capital Gains Tax annual exempt amount is £3,000 for 2024/25. If you've sold assets (shares, property that isn't your main home, business assets) and made a profit, make sure you're factoring in this allowance. Couples can also effectively double their allowance by transferring assets between spouses before selling.",
+ },
+ {
+ heading: '5. Pension Contributions Reduce Your Tax Bill',
+ body: "Pension contributions get tax relief at your marginal rate. If you're a higher-rate taxpayer, a £1,000 pension contribution only costs you £600 after tax relief. You can contribute up to 100% of your earnings (up to £60,000 per year) and carry forward unused allowance from the previous 3 tax years.",
+ },
+ {
+ heading: '6. Check Your National Insurance Record',
+ body: 'Gaps in your NI record reduce your State Pension entitlement. You need 35 qualifying years for the full new State Pension (currently £221.20/week). Check your record at the Government Gateway and consider making voluntary Class 3 contributions to fill gaps — this is often an excellent return on investment.',
+ },
+ ],
+ },
+ 'r-and-d-tax-credits-explained': {
+ slug: 'r-and-d-tax-credits-explained',
+ category: 'Tax',
+ categoryColor: 'blue',
+ date: '15 Dec 2024',
+ readTime: '5 min',
+ title: 'R&D Tax Credits: Are You Leaving Money on the Table?',
+ excerpt:
+ 'Many UK businesses qualify for R&D tax credits without realising it. Find out if your business is eligible and how much you could claim.',
+ author: 'James Whitfield',
+ authorRole: 'Founder & Senior Accountant · ICAEW · ACA',
+ authorBg: '1B9AD6',
+ content: [
+ {
+ heading: 'What Are R&D Tax Credits?',
+ body: 'Research and Development (R&D) tax credits are a government incentive designed to reward UK companies that invest in innovation. If your business has worked to develop new products, processes or services — or improve existing ones — you may be able to claim a significant tax saving or cash payment from HMRC.',
+ },
+ {
+ heading: "You Probably Qualify (Even If You Don't Think So)",
+ body: "The definition of R&D for tax purposes is broader than most people realise. You don't need a laboratory or a team of scientists. If your business has worked to overcome a technical challenge where the solution wasn't readily available — even in software development, manufacturing, food production or construction — that may well qualify.",
+ },
+ {
+ heading: 'How Much Can You Claim?',
+ body: "From April 2024, most companies fall under the merged R&D scheme. You can claim an enhanced deduction of 186% of qualifying R&D costs — meaning £100 of R&D spending becomes £186 of deductible costs. Loss-making companies can surrender losses for a cash credit at 10% (or up to 14.5% if you're an R&D-intensive SME with 30%+ qualifying expenditure).",
+ },
+ {
+ heading: 'What Costs Qualify?',
+ body: 'Qualifying costs include: staff costs (salaries, NI, pension contributions) for those directly involved in R&D; subcontractor costs (at 65%); software and consumables used directly in the R&D process; and externally provided workers. Your accountant can help identify all claimable costs — many businesses significantly underestimate their eligible expenditure.',
+ },
+ {
+ heading: 'How to Claim',
+ body: "R&D tax credits are claimed through your Corporation Tax return (CT600). You'll need to submit a technical narrative describing the R&D activities, plus a financial breakdown. HMRC scrutiny has increased since 2023, so it's important to have proper documentation. At Axil, we've successfully submitted R&D claims across multiple sectors — get in touch to see if you qualify.",
+ },
+ ],
+ },
+ 'payroll-auto-enrolment-guide': {
+ slug: 'payroll-auto-enrolment-guide',
+ category: 'Payroll',
+ categoryColor: 'green',
+ date: '2 Dec 2024',
+ readTime: '6 min',
+ title: 'Auto-Enrolment in 2025: A Plain English Guide for Employers',
+ excerpt:
+ "Auto-enrolment pension duties catch many small employers off guard. Here's everything you need to know to stay compliant.",
+ author: 'Tom Aldridge',
+ authorRole: 'Payroll & VAT Specialist · ATT',
+ authorBg: '27A870',
+ content: [
+ {
+ heading: 'What Is Auto-Enrolment?',
+ body: 'Auto-enrolment is the legal requirement for employers to automatically enrol eligible workers into a workplace pension scheme and make employer contributions. Introduced in 2012, it now applies to virtually all employers in the UK — even if you only have one member of staff.',
+ },
+ {
+ heading: 'Who Must Be Enrolled?',
+ body: 'You must automatically enrol employees who are: aged between 22 and State Pension age, earning above £10,000 per year, and working in the UK. Workers earning between £6,240 and £10,000 can opt in (and you must still contribute if they do). Workers earning under £6,240 can join voluntarily but employer contributions are not required.',
+ },
+ {
+ heading: 'Minimum Contribution Rates',
+ body: 'The current minimum total contribution is 8% of qualifying earnings (the band between £6,240 and £50,270 per year). At minimum, you as the employer must contribute at least 3%, with the employee making up the remainder (at least 5%). You can contribute more if you choose — and many employers offer enhanced contributions as a staff benefit.',
+ },
+ {
+ heading: 'Choosing a Pension Scheme',
+ body: "You'll need to choose a pension scheme that meets the qualifying criteria. NEST (National Employment Savings Trust) is the government-backed scheme and accepts all employers. Other popular options include The People's Pension, Aviva, and Royal London. The scheme must meet minimum standards set by The Pensions Regulator.",
+ },
+ {
+ heading: 'Re-Enrolment and Declaration of Compliance',
+ body: 'Every three years, you must re-enrol any eligible workers who have opted out — this is called re-enrolment. You must also submit a Declaration of Compliance to The Pensions Regulator within 5 months of your re-enrolment date. Missing this can result in fixed penalty notices starting at £400, rising to £10,000 per day for larger employers.',
+ },
+ ],
+ },
+ 'cash-flow-tips-small-business': {
+ slug: 'cash-flow-tips-small-business',
+ category: 'Finance',
+ categoryColor: 'blue',
+ date: '18 Nov 2024',
+ readTime: '5 min',
+ title: '7 Cash Flow Strategies Every Small Business Should Use',
+ excerpt:
+ 'Cash flow problems are the number one reason small businesses fail. These practical strategies will help you stay ahead of the curve.',
+ author: 'James Whitfield',
+ authorRole: 'Founder & Senior Accountant · ICAEW · ACA',
+ authorBg: '1B9AD6',
+ content: [
+ {
+ heading: '1. Invoice Immediately and Chase Promptly',
+ body: "The moment you complete work, send the invoice. Don't batch invoices at month-end — every day of delay is cash you don't have. Set up automatic payment reminders at 7, 14 and 30 days overdue. Most late payments are the result of invoices falling through the cracks rather than deliberate non-payment.",
+ },
+ {
+ heading: '2. Shorten Your Payment Terms',
+ body: 'Many businesses default to 30-day payment terms out of habit. Consider switching to 14 days — or even 7 days for smaller clients. Better still, require payment upfront for new clients and smaller projects. Most clients will accept whatever terms you set from the outset; the key is to be clear and consistent.',
+ },
+ {
+ heading: '3. Build a 3-Month Cash Reserve',
+ body: 'A cash buffer equal to 3 months of operating expenses gives you breathing room to handle slow-paying clients, seasonal dips, or unexpected costs without crisis. Build it gradually by setting aside a percentage of every payment received. Treat it as an operating cost, not savings.',
+ },
+ {
+ heading: '4. Negotiate Extended Terms With Suppliers',
+ body: 'While you work to get paid faster, you should simultaneously try to pay suppliers more slowly (within your agreed terms). If you currently pay on 14 days, ask your main suppliers if 30 or 45 days is possible. This stretches your cash cycle without damaging relationships.',
+ },
+ {
+ heading: '5. Use a Cash Flow Forecast',
+ body: "A simple 13-week rolling cash flow forecast tells you exactly when you'll be tight — and gives you time to act before you're in trouble. Most cloud accounting packages have built-in forecasting tools. At Axil, we build and maintain cash flow forecasts for our clients as part of our standard service.",
+ },
+ {
+ heading: '6. Review Your Pricing',
+ body: "Underpricing is one of the most common causes of cash flow problems. If your margins are thin, there's no buffer when costs rise or revenue dips. Review your pricing annually. Factor in all costs including your own time, overheads, tax, and a reasonable profit margin — not just direct costs.",
+ },
+ {
+ heading: '7. Consider Invoice Finance',
+ body: "If you work with large clients on long payment cycles, invoice finance (factoring or discounting) lets you unlock up to 90% of invoice value immediately, with the finance company collecting payment on your behalf. It's not right for every business, but for B2B service businesses with slow-paying clients, it can transform cash flow.",
+ },
+ ],
+ },
+};
+
+const RELATED_POSTS = [
+ {
+ slug: 'hmrc-making-tax-digital-guide',
+ category: 'Tax',
+ color: 'green' as const,
+ title: 'Making Tax Digital: Everything UK Business Owners Need to Know',
+ date: '12 Feb 2025',
+ },
+ {
+ slug: 'limited-company-vs-sole-trader',
+ category: 'Business',
+ color: 'blue' as const,
+ title: 'Limited Company vs Sole Trader: Which Is Right for Your Business?',
+ date: '28 Jan 2025',
+ },
+ {
+ slug: 'self-assessment-tips-2025',
+ category: 'Tax',
+ color: 'green' as const,
+ title: '10 Self-Assessment Tips That Could Save You Thousands',
+ date: '10 Jan 2025',
+ },
+];
+
+export async function generateStaticParams() {
+ return Object.keys(POSTS).map((slug) => ({ slug }));
+}
+
+export async function generateMetadata({
+ params,
+}: {
+ params: Promise<{ slug: string }>;
+}): Promise {
+ const { slug } = await params;
+ const post = POSTS[slug];
+ if (!post) return { title: 'Post Not Found' };
+ return {
+ title: `${post.title} — Axil Accountants Blog`,
+ description: post.excerpt,
+ };
+}
+
+export default async function BlogPostPage({ params }: { params: Promise<{ slug: string }> }) {
+ const { slug } = await params;
+ const post = POSTS[slug];
+ if (!post) notFound();
+
+ const related = RELATED_POSTS.filter((p) => p.slug !== slug).slice(0, 2);
+
+ return (
+ <>
+
+
+ {/* Hero */}
+
+
+
+
+ )}
+
+
+ >
+ );
+}
diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
new file mode 100644
index 0000000..e6c6324
--- /dev/null
+++ b/src/app/blog/page.tsx
@@ -0,0 +1,158 @@
+import type { Metadata } from 'next';
+import Link from 'next/link';
+import { Header } from '@/components/layout/Header';
+import { Footer } from '@/components/layout/Footer';
+import { Button } from '@/components/ui/Button';
+import { FadeIn } from '@/components/ui/FadeIn';
+import { SpotlightCard } from '@/components/ui/SpotlightCard';
+import { Tag } from '@/components/ui/Tag';
+
+export const metadata: Metadata = {
+ title: 'Blog — Axil Accountants',
+ description: 'Accounting tips, tax guides and financial insights for UK business owners.',
+};
+
+const POSTS = [
+ {
+ slug: 'hmrc-making-tax-digital-guide',
+ category: 'Tax',
+ date: '12 Feb 2025',
+ title: 'Making Tax Digital: Everything UK Business Owners Need to Know',
+ excerpt:
+ "MTD is now mandatory for most VAT-registered businesses. Here's what it means for you and how to make sure you're compliant.",
+ readTime: '6 min',
+ color: 'green' as const,
+ },
+ {
+ slug: 'limited-company-vs-sole-trader',
+ category: 'Business',
+ date: '28 Jan 2025',
+ title: 'Limited Company vs Sole Trader: Which Is Right for Your Business?',
+ excerpt:
+ 'One of the most common questions from new business owners. We break down the tax implications, liability and admin for both structures.',
+ readTime: '8 min',
+ color: 'blue' as const,
+ },
+ {
+ slug: 'self-assessment-tips-2025',
+ category: 'Tax',
+ date: '10 Jan 2025',
+ title: '10 Self-Assessment Tips That Could Save You Thousands',
+ excerpt:
+ "Filing your self-assessment tax return? These allowances and deductions are commonly missed — even by people who've been filing for years.",
+ readTime: '7 min',
+ color: 'green' as const,
+ },
+ {
+ slug: 'r-and-d-tax-credits-explained',
+ category: 'Tax',
+ date: '15 Dec 2024',
+ title: 'R&D Tax Credits: Are You Leaving Money on the Table?',
+ excerpt:
+ 'Many UK businesses qualify for R&D tax credits without realising it. Find out if your business is eligible and how much you could claim.',
+ readTime: '5 min',
+ color: 'blue' as const,
+ },
+ {
+ slug: 'payroll-auto-enrolment-guide',
+ category: 'Payroll',
+ date: '2 Dec 2024',
+ title: 'Auto-Enrolment in 2025: A Plain English Guide for Employers',
+ excerpt:
+ "Auto-enrolment pension duties catch many small employers off guard. Here's everything you need to know to stay compliant.",
+ readTime: '6 min',
+ color: 'green' as const,
+ },
+ {
+ slug: 'cash-flow-tips-small-business',
+ category: 'Finance',
+ date: '18 Nov 2024',
+ title: '7 Cash Flow Strategies Every Small Business Should Use',
+ excerpt:
+ 'Cash flow problems are the number one reason small businesses fail. These practical strategies will help you stay ahead of the curve.',
+ readTime: '5 min',
+ color: 'blue' as const,
+ },
+];
+
+export default function BlogPage() {
+ return (
+ <>
+
+
+ {/* Hero */}
+
+
+
+
+
+
+ Insights
+
+
+ Practical insights for UK business owners
+
+
+ Tax guides, accounting tips and financial strategies — written in plain English by
+ our team of qualified accountants.
+
+
+
+
+
+
+ {/* Posts grid */}
+
+
+
+ {POSTS.map((post, i) => (
+
+
+
+
+ {post.category}
+ {post.readTime} read
+
+
+ {post.title}
+
+
+ {post.excerpt}
+
+
+ {post.date}
+ Read more →
+
+
+
+
+ ))}
+
+
+
+
+ {/* Newsletter CTA */}
+
+
+
+
+ Get accounting insights in your inbox
+
+
+ Monthly tax tips, deadline reminders and practical guides — free, no spam.
+
+ Book a free 30-minute consultation directly in our calendar.
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/app/services/[slug]/page.tsx b/src/app/services/[slug]/page.tsx
new file mode 100644
index 0000000..dfcb0dc
--- /dev/null
+++ b/src/app/services/[slug]/page.tsx
@@ -0,0 +1,353 @@
+import type { Metadata } from 'next';
+import { notFound } from 'next/navigation';
+import Link from 'next/link';
+import { Header } from '@/components/layout/Header';
+import { Footer } from '@/components/layout/Footer';
+import { Button } from '@/components/ui/Button';
+import { FadeIn } from '@/components/ui/FadeIn';
+import { SpotlightCard } from '@/components/ui/SpotlightCard';
+import { CheckCircleIcon } from '@/components/ui/icons';
+
+const SERVICES: Record<
+ string,
+ {
+ title: string;
+ tagline: string;
+ intro: string;
+ includes: string[];
+ benefits: { title: string; desc: string }[];
+ faq: { q: string; a: string }[];
+ }
+> = {
+ bookkeeping: {
+ title: 'Bookkeeping',
+ tagline: 'Accurate records, zero stress',
+ intro:
+ 'Up-to-date books every month, cloud-based and always accessible. We reconcile every transaction so your accounts are always audit-ready — and you always know where you stand.',
+ includes: [
+ 'Monthly bank reconciliation',
+ 'Expense categorisation & receipts',
+ 'Accounts payable & receivable tracking',
+ 'Cloud accounting software setup (Xero/QuickBooks)',
+ 'Monthly management accounts',
+ 'Real-time financial dashboard access',
+ ],
+ benefits: [
+ {
+ title: 'Save 10+ hours per month',
+ desc: 'Stop wrestling with spreadsheets. We handle every transaction so you never have to.',
+ },
+ {
+ title: 'Always audit-ready',
+ desc: 'Clean, HMRC-compliant records mean no panic when a filing deadline arrives.',
+ },
+ {
+ title: 'Real-time visibility',
+ desc: 'Log in any time to see exactly how your business is performing, with no surprises.',
+ },
+ ],
+ faq: [
+ {
+ q: 'Which accounting software do you use?',
+ a: "We work with Xero, QuickBooks and Sage. We'll recommend the best option for your business and handle the setup.",
+ },
+ {
+ q: 'How do I send you my receipts?',
+ a: 'Via a simple mobile app — just photograph receipts on your phone. No more shoeboxes.',
+ },
+ {
+ q: 'How quickly are transactions recorded?',
+ a: 'All transactions are reconciled within 48 hours of your bank feed updating, usually faster.',
+ },
+ ],
+ },
+ 'tax-returns': {
+ title: 'Tax Returns',
+ tagline: 'Every allowance claimed',
+ intro:
+ 'From self-assessment to corporation tax, we handle every filing and actively look for every allowance, deduction and relief your business is entitled to.',
+ includes: [
+ 'Self-assessment tax return preparation & filing',
+ 'Corporation tax (CT600) preparation & filing',
+ 'Capital allowances review',
+ 'R&D tax credits (if applicable)',
+ 'HMRC correspondence management',
+ 'Tax planning & year-end strategy',
+ ],
+ benefits: [
+ {
+ title: 'Never miss a deadline',
+ desc: "We track every HMRC deadline and file well in advance — you'll never pay a late filing penalty.",
+ },
+ {
+ title: 'Maximum allowances',
+ desc: 'Our tax specialists review every available allowance and relief to legally minimise your tax bill.',
+ },
+ {
+ title: 'HMRC as a proxy',
+ desc: 'We handle all correspondence with HMRC. You never have to speak to them directly unless you want to.',
+ },
+ ],
+ faq: [
+ {
+ q: 'When do you start my tax return?',
+ a: "We begin collecting information 3–4 months before your filing deadline so there's never a rush.",
+ },
+ {
+ q: 'What if HMRC investigates me?',
+ a: 'We represent you fully and handle the entire process. Our fee protection cover is included as standard.',
+ },
+ {
+ q: 'Can you do R&D tax credits?',
+ a: "Yes — if your business conducts qualifying R&D activities, we'll identify and claim the relief on your behalf.",
+ },
+ ],
+ },
+ payroll: {
+ title: 'Payroll',
+ tagline: 'On time, every time',
+ intro:
+ 'Fully managed payroll for businesses of any size. We handle PAYE, National Insurance, pension auto-enrolment, RTI filings and payslips — so you never have to think about it.',
+ includes: [
+ 'Monthly payroll processing',
+ 'PAYE & National Insurance calculations',
+ 'Auto-enrolment pension management',
+ 'Real Time Information (RTI) submissions',
+ 'Payslips for every employee',
+ 'P60s, P45s and P11Ds',
+ ],
+ benefits: [
+ {
+ title: 'Zero errors',
+ desc: 'Manual payroll errors are costly. Our systems double-check every calculation before submission.',
+ },
+ {
+ title: 'Full compliance',
+ desc: 'RTI submissions, auto-enrolment, NMW compliance — all handled on time, every time.',
+ },
+ {
+ title: 'Scales with you',
+ desc: 'Whether you have 1 employee or 100, our payroll service scales effortlessly as your team grows.',
+ },
+ ],
+ faq: [
+ {
+ q: "What's the deadline for running payroll?",
+ a: 'We ask for any changes (new starters, leavers, salary changes) by the 20th of each month and process by the 25th.',
+ },
+ {
+ q: 'Do you handle auto-enrolment pensions?',
+ a: 'Yes — we set up and manage your workplace pension scheme, handle all enrolment communications and submissions.',
+ },
+ {
+ q: 'What if I need to add a new employee?',
+ a: 'Just email us the details. We add them to the next payroll run and handle all the HMRC notifications.',
+ },
+ ],
+ },
+ 'vat-returns': {
+ title: 'VAT Returns',
+ tagline: 'MTD-compliant filing',
+ intro:
+ 'Making Tax Digital-compliant VAT returns filed accurately and on time, every quarter. We also advise on the most tax-efficient VAT scheme for your business.',
+ includes: [
+ 'Quarterly VAT return preparation & filing',
+ 'Making Tax Digital (MTD) compliance',
+ 'VAT scheme assessment & advice',
+ 'Input & output VAT reconciliation',
+ 'HMRC VAT correspondence',
+ 'VAT registration & deregistration',
+ ],
+ benefits: [
+ {
+ title: 'Never miss a VAT deadline',
+ desc: 'Late VAT returns trigger automatic penalties. We file every return well before the deadline.',
+ },
+ {
+ title: 'Right scheme for your business',
+ desc: "Flat Rate, Cash Accounting or Standard — we make sure you're on the scheme that minimises your VAT bill.",
+ },
+ {
+ title: 'MTD fully handled',
+ desc: "HMRC's Making Tax Digital requirements are completely managed by us. No software headaches.",
+ },
+ ],
+ faq: [
+ {
+ q: 'Do I need to register for VAT?',
+ a: "You must register once your taxable turnover exceeds £90,000. We'll advise on timing and handle the registration.",
+ },
+ {
+ q: 'What is Making Tax Digital?',
+ a: 'MTD requires businesses to keep digital records and submit VAT returns using approved software. We handle this entirely.',
+ },
+ {
+ q: 'Can you help with a VAT investigation?',
+ a: 'Yes — we represent you fully in any HMRC VAT enquiry and our fee protection covers the cost.',
+ },
+ ],
+ },
+};
+
+export function generateStaticParams() {
+ return Object.keys(SERVICES).map((slug) => ({ slug }));
+}
+
+export async function generateMetadata({
+ params,
+}: {
+ params: Promise<{ slug: string }>;
+}): Promise {
+ const { slug } = await params;
+ const svc = SERVICES[slug];
+ if (!svc) return {};
+ return {
+ title: `${svc.title} — Axil Accountants`,
+ description: svc.intro,
+ };
+}
+
+export default async function ServicePage({ params }: { params: Promise<{ slug: string }> }) {
+ const { slug } = await params;
+ const svc = SERVICES[slug];
+ if (!svc) notFound();
+
+ return (
+ <>
+
+
+ {/* Hero */}
+
+
+
+
+
+
+ ← All services
+
+
+ {svc.title}
+
+
+ {svc.tagline}
+
+
{svc.intro}
+
+
+
+
+
+
+ {/* What's included */}
+
+
+
+
+
+ What's included
+
+
+ Everything covered, nothing extra
+
+
+ {svc.includes.map((item) => (
+
+
+ {item}
+
+ ))}
+
+
+
+
+
+ Why it matters
+
+
+ The benefits
+
+
+ {svc.benefits.map((b, i) => (
+
+
+
+ {i + 1}
+
+
+ {b.title}
+
+
+
{b.desc}
+
+ ))}
+
+
+
+
+
+
+ {/* FAQ */}
+
+
+
+
+
+ FAQ
+
+
+ Common questions about {svc.title.toLowerCase()}
+
+
+ {svc.faq.map((item) => (
+
+
+ {item.q}
+
+
{item.a}
+
+ ))}
+
+
+
+
+
+
+ {/* CTA */}
+
+
+
+
+ Ready to get started with {svc.title}?
+
+
+ Book a free consultation and we'll have you set up in days.
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
new file mode 100644
index 0000000..fc6af5e
--- /dev/null
+++ b/src/app/services/page.tsx
@@ -0,0 +1,186 @@
+import type { Metadata } from 'next';
+import Link from 'next/link';
+import { Header } from '@/components/layout/Header';
+import { Footer } from '@/components/layout/Footer';
+import { Button } from '@/components/ui/Button';
+import { FadeIn } from '@/components/ui/FadeIn';
+import { SpotlightCard } from '@/components/ui/SpotlightCard';
+import {
+ CheckCircleIcon,
+ BookkeepingIcon,
+ TaxIcon,
+ PayrollIcon,
+ VATIcon,
+} from '@/components/ui/icons';
+
+export const metadata: Metadata = {
+ title: 'Services — Axil Accountants',
+ description:
+ 'Bookkeeping, tax returns, payroll and VAT returns for UK businesses. Fixed monthly fees, dedicated account manager.',
+};
+
+const SERVICES = [
+ {
+ slug: 'bookkeeping',
+ icon: BookkeepingIcon,
+ title: 'Bookkeeping',
+ tagline: 'Accurate records, zero stress',
+ desc: 'We keep your books up to date every month so you always know exactly where your business stands financially.',
+ perks: [
+ 'Monthly reconciliation',
+ 'Real-time reports',
+ 'MTD-ready records',
+ 'Cloud accounting setup',
+ ],
+ color: 'bg-emerald-mist',
+ accent: 'text-emerald',
+ },
+ {
+ slug: 'tax-returns',
+ icon: TaxIcon,
+ title: 'Tax Returns',
+ tagline: 'Every allowance claimed',
+ desc: "From self-assessment to corporation tax, we handle it all — and we proactively find every allowance you're entitled to.",
+ perks: ['Self-assessment filing', 'Corporation tax', 'Capital allowances', 'R&D tax credits'],
+ color: 'bg-blue-mist',
+ accent: 'text-blue',
+ },
+ {
+ slug: 'payroll',
+ icon: PayrollIcon,
+ title: 'Payroll',
+ tagline: 'On time, every time',
+ desc: 'Fully managed payroll for teams of any size. We handle PAYE, National Insurance, pension auto-enrolment and RTI filings.',
+ perks: ['PAYE & NI management', 'Auto-enrolment', 'RTI submissions', 'Payslips & P60s'],
+ color: 'bg-emerald-mist',
+ accent: 'text-emerald',
+ },
+ {
+ slug: 'vat-returns',
+ icon: VATIcon,
+ title: 'VAT Returns',
+ tagline: 'MTD-compliant filing',
+ desc: 'Making Tax Digital-compliant VAT returns filed on time, every quarter. We also advise on the right VAT scheme for your business.',
+ perks: ['Quarterly VAT returns', 'MTD compliance', 'VAT scheme advice', 'HMRC correspondence'],
+ color: 'bg-blue-mist',
+ accent: 'text-blue',
+ },
+];
+
+export default function ServicesPage() {
+ return (
+ <>
+
+
+ {/* Hero */}
+
+
+
+
+
+
+ What we offer
+
+
+ Everything your business needs, nothing it doesn't
+
+
+ Fixed monthly fees. No surprise invoices. Just expert accounting that keeps your
+ business compliant and growing.
+
+ Smart Accounting for
+
+ Growing British Businesses
+
+
+
+ ICAEW-certified accountants with fixed monthly fees, a dedicated account manager, and zero
+ HMRC surprises. You focus on growth — we handle the numbers.
+