16 lines
371 B
TypeScript
16 lines
371 B
TypeScript
export default function Head() {
|
|
return (
|
|
<>
|
|
<title>Transactions | LedgerOne</title>
|
|
<meta
|
|
name="description"
|
|
content="Review raw transactions and layered categories in LedgerOne."
|
|
/>
|
|
<meta
|
|
name="keywords"
|
|
content="ledgerone transactions, transaction ledger, audit-ready transactions"
|
|
/>
|
|
</>
|
|
);
|
|
}
|