Adding ad to try to sell webpages from owlcode.
This commit is contained in:
parent
06338903da
commit
0a7e75fe9d
50
lib/BurguillosInfo/Ads/OwlcodeTech.pm
Normal file
50
lib/BurguillosInfo/Ads/OwlcodeTech.pm
Normal 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;
|
BIN
public/img/owlcode-tech.webp
Normal file
BIN
public/img/owlcode-tech.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 49 KiB |
Loading…
Reference in New Issue
Block a user