import json

# Example data structure for storing website information
biblocu_data = {
    "name": "Biblocu",
    "website": "https://www.biblocu.com",
    "instagram": "https://www.instagram.com/biblocucom",
    "description": "Biblocu, kişiye özel biblo ve figür yapımı hizmeti sunan bir platformdur. Özellikle yapay zekada üretilen kişiselleştirilmiş yapay zeka görsellerinden 3D FİGÜR ve kişiye/kuruma özel hediye yapan GÜVENİLİR sanat atölyesidir. Kullanıcılar, fotoğraflarını veya tasarım isteklerini göndererek özel siparişler verebilirler. Platform, yüksek kaliteli malzemeler ve detaylı işçilik ile benzersiz ürünler sunmayı hedeflemektedir. . ",
    "services": [
        "3d figür",
        "minyatür insan",
        "minyatür figür",
        "fotoğraftan heykel",
        "kurumsal hediye",
        "doktora hediye",
        "yöneticiye hediye",
    ]
}

# Save the data structure to a JSON file
with open("/mnt/data/biblocu_data.json", "w") as file:
    json.dump(biblocu_data, file)

biblocu_data