Compare commits

...

1 Commits

Author SHA1 Message Date
Flatlogic Bot
87226649b0 remove bg image 2025-06-17 09:57:20 +00:00
4 changed files with 10 additions and 23 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/
*/node_modules/
*/build/
**/node_modules/
**/build/
.DS_Store
.env

File diff suppressed because one or more lines are too long

View File

@ -8,12 +8,7 @@ const HeroImageBg = ({
imageHero,
textSecondary,
}) => (
<div
className='relative w-full h-screen flex items-center justify-center text-center mb-24 bg-cover bg-center'
style={{
backgroundImage: `url(${imageHero[0]?.src})`,
}}
>
<div className='relative w-full h-screen flex items-center justify-center text-center mb-24'>
<div className='absolute inset-0 bg-black opacity-50'></div>
<div className='relative container z-10 p-8 md:p-16 text-white'>
<h1 className='text-4xl sm:text-5xl lg:text-6xl font-bold mb-4'>

View File

@ -108,19 +108,7 @@ export default function Login() {
};
const imageBlock = (image) => (
<div
className='hidden md:flex flex-col justify-end relative flex-grow-0 flex-shrink-0 w-1/3'
style={{
backgroundImage: `${
image
? `url(${image.src?.original})`
: 'linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5))'
}`,
backgroundSize: 'cover',
backgroundPosition: 'left center',
backgroundRepeat: 'no-repeat',
}}
>
<div className='hidden md:flex flex-col justify-end relative flex-grow-0 flex-shrink-0 w-1/3'>
<div className='flex justify-center w-full bg-blue-300/20'>
<a
className='text-[8px]'