remove bg image
This commit is contained in:
parent
90a6e06e18
commit
87226649b0
5
.gitignore
vendored
5
.gitignore
vendored
@ -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
@ -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'>
|
||||
|
||||
@ -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]'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user