Adding ad to try to sell webpages from owlcode.

This commit is contained in:
sergiotarxz 2023-09-29 13:12:20 +02:00
parent 06338903da
commit 0a7e75fe9d
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,50 @@
package BurguillosInfo::Ads::OwlcodeTech;
use v5.36.0;
use strict;
use warnings;
use utf8;
use feature 'signatures';
use Moo;
use parent 'BurguillosInfo::Ad';
sub id ($self) {
return 'owlcode-tech';
}
sub weight {
return 50;
}
sub seconds($self) {
return 15;
}
sub max_alternative {
return 1;
}
sub default_alternative($self) {
return int($self->alternative * ($self->max_alternative + 1));
}
sub is_active ($self) {
return 1;
}
sub img ($self) {
return '/img/owlcode-tech.webp';
}
sub text($self) {
return '¿Tienes una PYME o eres autónomo y aun no tienes presencia web? Consigue una web totalmente subvencionada. Pulsa aquí para más información.';
}
sub href {
return 'mailto:contact@owlcode.tech?subject=Quiero%20una%20web%20completamente%20subvencionada';
}
1;

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB