---
url: https://gudhub.com/docs/ssr-ssg/website/configs/general-info-config/
title: "General Info Config\n                #"
description: "The generalInfo configuration is an array containing details about the organization. This data can be utilized across the application to provide contact details"
lang: uk
updated: 2026-09-11T14:07:51.087Z
---

# General Info Config [#](https://gudhub.com/docs/ssr-ssg/website/configs/general-info-config/#general-info-config)

The generalInfo configuration is an array containing details about the organization. This data can be utilized across the application to provide contact details, branding elements, social media links, and legal information.

## Structure of generalInfo [#](https://gudhub.com/docs/ssr-ssg/website/configs/general-info-config/#structure-of-generalinfo)

Each object in the generalInfo array includes the following properties:

### **Basic Information** [#](https://gudhub.com/docs/ssr-ssg/website/configs/general-info-config/#basic-information)

| **Property Name** | **Type** | **Description** |
| :-- | :-- | :-- |
| `name` | `string` | Display name of the organization. |
| `langCode` | `string` | Language code for the information (e.g., 'uk' for Ukrainian). |
| `defaultLang` | `boolean` | Indicates whether this is the default language for the information. |
| `legalName` | `string` | Full legal name of the organization. |
| `phone` | `string` | Primary contact phone number. |
| `email` | `string` | Primary contact email address. |

---

### **Social Media Links** [#](https://gudhub.com/docs/ssr-ssg/website/configs/general-info-config/#social-media-links)

| **Property Name** | **Type** | **Description** |
| :-- | :-- | :-- |
| `socLinks` | `string` | Contains links to the organization's social media profiles. |
| `facebook` | `string` | URL of the Facebook page. |
| `linkedin` | `string` | URL of the LinkedIn page. |
| `instagram` | `string` | URL of the Instagram profile. |
| `twitter` | `string` | URL of the Twitter profile. |

---

### **Branding and Legal Details** [#](https://gudhub.com/docs/ssr-ssg/website/configs/general-info-config/#branding-and-legal-details)

| **Property Name** | **Type** | **Description** |
| :-- | :-- | :-- |
| `logo` | `string` | URL of the organization’s logo. |
| `foundingDate` | `string` | Founding date of the organization. |
| `founders` | `string` | Names of the organization’s founders. |

---

### **Address Information** [#](https://gudhub.com/docs/ssr-ssg/website/configs/general-info-config/#address-information)

#### **Full Address** [#](https://gudhub.com/docs/ssr-ssg/website/configs/general-info-config/#full-address)

| **Property Name** | **Type** | **Description** |
| :-- | :-- | :-- |
| `fullAddress` | `string` | Full address of the organization. |

#### **Separated Address** [#](https://gudhub.com/docs/ssr-ssg/website/configs/general-info-config/#separated-address)

| **Property Name** | **Type** | **Description** |
| :-- | :-- | :-- |
| `streetAddress` | `string` | Street name and number. |
| `addressLocality` | `string` | Locality or city name. |
| `addressRegion` | `string` | Region or state name. |
| `postalCode` | `string` | Postal code of the address. |
| `addressCountry` | `string` | Country code (e.g., 'UA' for Ukraine). |

---

### **Map Integration** [#](https://gudhub.com/docs/ssr-ssg/website/configs/general-info-config/#map-integration)

| **Property Name** | **Type** | **Description** |
| :-- | :-- | :-- |
| `googleMaps` | `string` | URL to the organization's location on Google Maps. |

Copy

```javascript
export const generalInfo = [
    {
        name: "string",
        langCode: "string",
        defaultLang: boolean,
        legalName: "string",
        phone: "string",
        email: "string",
        socLinks: {
            facebook: "string",
            linkedin: "string",
            instagram: "string",
            twitter: "string"
        },
        logo: "string",
        foundingDate: "string",
        founders: "string",
        fullAddress: "string",
        separatedAddress: {
            streetAddress: "string",
            addressLocality: "string",
            addressRegion: "string",
            postalCode: "string",
            addressCountry: "string"
        },
        googleMaps: "string"
    }
];
```
