Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
32d4286
Iconos sin anclajes
pati2800 Aug 7, 2025
c2c729a
Merge pull request #127 from bitlogic/fix/SBIT-604-social-icons-acces…
brunoportesio Aug 11, 2025
0e0596d
SBIT-619 se modifica estilo para que la imagen se vea bien
JuanaBalduini Aug 11, 2025
1248eb0
Merge pull request #131 from bitlogic/SBIT-619-visualizacion-imagenes…
brunoportesio Aug 13, 2025
cd9d31a
SBIT-606 Se modifica una etiqueta h1
JuanaBalduini Aug 13, 2025
a051c41
Merge pull request #132 from bitlogic/SBIT-606-semrush-varias-etiquet…
brunoportesio Aug 13, 2025
e955236
EN: adaptar BlogItemDetail + JSON-LD
pati2800 Aug 15, 2025
f14b323
update graphql definitions
brunoportesio Aug 15, 2025
7e62c76
Merge pull request #134 from bitlogic/SBIT-609-implentarHowto
brunoportesio Aug 15, 2025
b7eed66
cambios blog detail
pati2800 Aug 18, 2025
8592ee9
Merge branch 'SBIT-609-implentarHowto' of https://github.com/bitlogic…
pati2800 Aug 18, 2025
99e1207
delete yarnlock
pati2800 Aug 20, 2025
f897183
Merge pull request #135 from bitlogic/SBIT-609-implentarHowto
brunoportesio Aug 20, 2025
d64ccd4
yarnlock e index.js update
pati2800 Aug 20, 2025
87426dc
Merge pull request #136 from bitlogic/SBIT-609-implentarHowto
brunoportesio Aug 20, 2025
0017f48
Modificaciones de video y FAQ
pati2800 Aug 20, 2025
103080a
rollback
pati2800 Aug 20, 2025
65f591a
Merge pull request #137 from bitlogic/SBIT-600-Previsualizacion-iOS-m…
brunoportesio Aug 20, 2025
cc63ea2
Cambios en descripcion y FAQ
pati2800 Aug 21, 2025
07905b7
cambio
pati2800 Aug 21, 2025
9ca9ec9
cambio 2
pati2800 Aug 21, 2025
59af6e5
Merge pull request #138 from bitlogic/fix/SBIT-cambios-del-FAQ
brunoportesio Aug 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/Banners/BannerTop.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@
.BannerTop {
&__bgImage {
min-height: 55vh;

&::after {
background-position: top !important;
}
}

&__titleContainer {
Expand Down
12 changes: 4 additions & 8 deletions src/components/FaIcon/FaIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,26 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
import { faEnvelope, faLocationDot } from "@fortawesome/free-solid-svg-icons"
import {
faLinkedin,
faTwitter,
faXTwitter,
faInstagram,
faYoutube,
faSpotify

faSpotify,
faXTwitter,
} from "@fortawesome/free-brands-svg-icons"
import PropTypes from "prop-types"

const iconMap = {
"fa-envelope": faEnvelope,
"fa-location-dot": faLocationDot,
"fa-linkedin": faLinkedin,
"fa-twitter": faTwitter,
"fa-x-twitter": faXTwitter,
"fa-instagram": faInstagram,
"fa-youtube": faYoutube,
"fa-spotify": faSpotify,
}

const FaIcon = ({ type, code }) => {
const icon = iconMap[code]
const normalizedCode = code?.toLowerCase()
const icon = iconMap[normalizedCode]

if (!icon) {
console.warn(`Icono no encontrado: type=${type}, code=${code}`)
Expand All @@ -39,6 +37,4 @@ FaIcon.propTypes = {
code: PropTypes.string.isRequired,
}


export default FaIcon

34 changes: 19 additions & 15 deletions src/components/Footer/SocialLinks/socialLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,21 @@ import PropTypes from "prop-types"
export default function SocialLinks({ image, socialMedia }) {
const logo = getImage(image?.localFile?.childImageSharp?.gatsbyImageData)

const socialMediaItems = socialMedia?.map(item => {
return (
<a
key={item.id}
href={item.url}
target="_blank"
className={`btn-social m-2 btn-social-icon btn-${item.icon?.name}`}
rel="noreferrer"
aria-label={`Link externo a ${item?.name}`}
>
const socialMediaItems = socialMedia?.map(item => (
<a
key={item.id}
href={item.url}
target="_blank"
className={`btn-social m-2 btn-social-icon btn-${item.icon?.name}`}
rel="noreferrer"
aria-label={`External link to ${item?.name}`}
>
<>
<FaIcon type={item.icon?.type} code={item.icon?.code} />
</a>
)
})
<span className="visually-hidden">Link to {item.name}</span>
</>
</a>
))

return (
<div className="Footer__socialMedia d-flex flex-column">
Expand All @@ -33,10 +34,10 @@ export default function SocialLinks({ image, socialMedia }) {

{logo && (
<div className="Footer__socialMedia__Logo text-center">
<Link to="/">
<Link to="/en">
<GatsbyImage
image={logo}
alt={image?.alternativeText || "Logo Bitlogic"}
alt={image?.alternativeText || "Bitlogic Logo"}
/>
</Link>
</div>
Expand All @@ -60,6 +61,9 @@ SocialLinks.propTypes = {
url: PropTypes.string,
name: PropTypes.string,
icon: PropTypes.shape({
name: PropTypes.string,
type: PropTypes.string,
code: PropTypes.string,
url: PropTypes.string,
alternativeText: PropTypes.string,
localFile: PropTypes.shape({
Expand Down
3 changes: 3 additions & 0 deletions src/components/Footer/SocialLinks/socialLinks.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
color: $white;
width: 21px;
height: 21px;
display: inline-flex;
align-items: center;
justify-content: center;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/Form/PipedriveForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const PipedriveForm = ({ data }) => {
<div className="container d-flex px-lg-2 flex-wrap">
<div className="col-12 col-md-6 pe-md-5">
{title && (
<h1 className="title text-start">{title}</h1>
<h2 className="title text-start">{title}</h2>
)}
{content && (
<MarkdownView
Expand Down
2 changes: 2 additions & 0 deletions src/components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import Layaout from "./layout"
import PipedriveForm from "./Form/PipedriveForm"
import CustomSection from "./CustomSection/CustomSection"
import Navigation from "./Navigation/Navigation"
import CustomImage from "./CustomImage/CustomImage"

export {
Seo,
Expand All @@ -36,4 +37,5 @@ export {
PipedriveForm,
CustomSection,
Navigation,
CustomImage
}
Loading