# configuration/strings/company.strings.ts

> 14 lines of code and 14 definitions.

Tree: Site tree
Language: typescript
Layer: product
Canonical: https://banes-lab.com/anatomy/tree#file-configuration-strings-company-strings-ts
Source text: https://banes-lab.com/assets/sources/source.66cb58aad8599cdb0b8b4a4ce16ff04f3fcdb941bafd5c240534075e59d1dc2f.generated.txt

## Definitions

- `COMPANY_NAME` (lexical_declaration, line 1, exported)
- `COMPANY_OWNER` (lexical_declaration, line 3, exported)
- `COMPANY_ADDRESS` (lexical_declaration, line 5, exported)
- `COMPANY_CITY` (lexical_declaration, line 7, exported)
- `COMPANY_COUNTRY` (lexical_declaration, line 9, exported)
- `COMPANY_NUMBER` (lexical_declaration, line 11, exported)
- `COMPANY_FOUNDED` (lexical_declaration, line 13, exported)
- `COMPANY_EMAIL` (lexical_declaration, line 15, exported)
- `REPLY_NOTE` (lexical_declaration, line 17, exported)
- `EMAIL_LINK_TITLE` (lexical_declaration, line 19, exported)
- `GITHUB_LINK_TITLE` (lexical_declaration, line 21, exported)
- `LINKEDIN_LINK_TITLE` (lexical_declaration, line 23, exported)
- `COPYRIGHT_PREFIX` (lexical_declaration, line 25, exported)
- `COPYRIGHT_SUFFIX` (lexical_declaration, line 27, exported)

## Source

```typescript
export const COMPANY_NAME = "Bane's Lab";

export const COMPANY_OWNER = "Jay Baleine";

export const COMPANY_ADDRESS = "Ostend, Belgium";

export const COMPANY_CITY = "Ostend";

export const COMPANY_COUNTRY = "BE";

export const COMPANY_NUMBER = "0770.876.816";

export const COMPANY_FOUNDED = "2025-09-23";

export const COMPANY_EMAIL = "jay@banes-lab.com";

export const REPLY_NOTE = "Responses are best-effort and not guaranteed within a fixed window.";

export const EMAIL_LINK_TITLE = "Email";

export const GITHUB_LINK_TITLE = "GitHub";

export const LINKEDIN_LINK_TITLE = "LinkedIn";

export const COPYRIGHT_PREFIX = "© ";

export const COPYRIGHT_SUFFIX = " Bane's Lab. All rights reserved.";
```
