want to add contact icons

i want to add these contact links bottom of the buy now button with link but i couldn’t find any app like this and some are premium app. Is it possible to do it via coding

Hello there

It’s easy to add by custom coding. It would be great if you contact a expert to add it on the footer. If you’d like to discuss this more, don’t hesitate to send me a PM.

Regards

Titu

then can you provide me the code?

Yes, If you want then I can share that code

yes please

body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f8f6f1;
        }
        .contact-container {
            display: flex;
            gap: 20px;
        }
        .contact-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 150px;
            height: 100px;
            background: #f4f2ec;
            border: 1px solid #ddd;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: 0.3s ease-in-out;
            text-decoration: none;
        }
        .contact-box:hover {
            background: #eae7df;
            transform: translateY(-5px);
        }
        .contact-box i {
            font-size: 24px;
            color: #000;
            margin-bottom: 8px;
        }
        .contact-box p {
            font-size: 14px;
            font-weight: bold;
            color: #333;
            margin: 0;
        }

I can’t share that code because of community rules

then how to fix this issue

If you’d like to discuss this more, don’t hesitate to send me a PM.