generated from deco-sites/storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from deco-sites/feat/quem-somos
style: page quem somos estilizada
- Loading branch information
Showing
10 changed files
with
654 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
import { clx } from "$store/sdk/clx.ts"; | ||
|
||
interface EllipseProps{ | ||
desktop?:boolean; | ||
mobile?:boolean; | ||
} | ||
|
||
interface Ellipse{ | ||
ellipse01?:EllipseProps; | ||
ellipse02?:EllipseProps; | ||
ellipse03?:EllipseProps; | ||
ellipse04?:EllipseProps; | ||
} | ||
|
||
interface Props{ | ||
ellipse?:Ellipse; | ||
} | ||
|
||
function EllipseSnippet( { ellipse } : Props ){ | ||
return( | ||
<> | ||
<div | ||
class={clx(` | ||
${ellipse?.ellipse01?.desktop ? 'md:hidden' : ''} | ||
${ellipse?.ellipse01?.mobile ? 'mobile:hidden' : ''} | ||
absolute md:top-[40px] md:-left-[40px] mobile:top-[60px] mobile:-left-[20px]`)}> | ||
<img | ||
class="md:w-[100px] md:h-[100px] mobile:w-[50%]" | ||
src="/image/star.png" | ||
loading="lazy"/> | ||
</div> | ||
|
||
<div | ||
class={clx(` | ||
${ellipse?.ellipse02?.desktop ? 'md:hidden' : ''} | ||
${ellipse?.ellipse02?.mobile ? 'mobile:hidden' : ''} | ||
md:w-[126px] md:h-[28px] -rotate-[17deg] bg-secondary filter blur-2xl absolute bottom-[50px] left-[0] | ||
mobile:[bottom:initial] mobile:-left-[30px] mobile:top-[310px] mobile:w-[126px] mobile:h-[28px]`)}> | ||
</div> | ||
|
||
<div | ||
class={clx(` | ||
${ellipse?.ellipse03?.desktop ? 'md:hidden' : ''} | ||
${ellipse?.ellipse03?.mobile ? 'mobile:hidden' : ''} | ||
w-[126px] h-[28px] -rotate-[17deg] bg-accent filter blur-2xl absolute right-[10px] top-[0]`)}> | ||
</div> | ||
|
||
<div | ||
class={clx(` | ||
${ellipse?.ellipse04?.desktop ? 'md:hidden' : ''} | ||
${ellipse?.ellipse04?.mobile ? 'mobile:hidden' : ''} | ||
n1-ellipse__mobile absolute right-0 md:-bottom-[75px] md:w-[462px] md:h-[263px] | ||
mobile:top-[270px] mobile:w-[230px] mobile:h-[230px]`)}> | ||
<div class="hidden md:flex items-end justify-end"> | ||
<svg xmlns="http://www.w3.org/2000/svg" width="108" height="263" viewBox="0 0 108 263" fill="none"> | ||
<g filter="url(#filter0_f_14285_14929)"> | ||
<ellipse cx="184.125" cy="211.5" rx="83.625" ry="111.5" fill="#F6AB00"/> | ||
</g> | ||
<defs> | ||
<filter id="filter0_f_14285_14929" x="0.5" y="0" width="367.25" height="423" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
<feFlood flood-opacity="0" result="BackgroundImageFix"/> | ||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/> | ||
<feGaussianBlur stdDeviation="50" result="effect1_foregroundBlur_14285_14929"/> | ||
</filter> | ||
</defs> | ||
</svg> | ||
</div> | ||
<div class="absolute top-0 right-0"> | ||
<img | ||
class="hidden md:flex md:w-[288px] md:h-[263px]" | ||
src="/image/bg-ellipses-multiple.png" | ||
loading="lazy"/> | ||
<img | ||
class="hidden mobile:flex mobile:w-[165px] mobile:h-[151px]" | ||
src="/image/bg-ellipses-multiple-mobile.png" | ||
loading="lazy"/> | ||
</div> | ||
</div> | ||
</> | ||
) | ||
} | ||
|
||
export default EllipseSnippet; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import { Picture, Source } from "apps/website/components/Picture.tsx"; | ||
import type { ImageWidget } from "apps/admin/widgets.ts"; | ||
|
||
interface ImageGeneric{ | ||
src?:ImageWidget; | ||
width?:number; | ||
height?:number; | ||
} | ||
|
||
interface DeviceImage{ | ||
alt?:string; | ||
desktop?:ImageGeneric; | ||
mobile?:ImageGeneric; | ||
} | ||
|
||
interface Side{ | ||
title?:string; | ||
description?:string; | ||
device?:DeviceImage[]; | ||
} | ||
|
||
interface Props{ | ||
bg?:DeviceImage; | ||
side?:Side; | ||
} | ||
|
||
function ImagesAndBackgroundSide( { bg, side }:Props ){ | ||
return ( | ||
<> | ||
<div class="portatil:w-[80%] tablet:w-[80%] tablet:ml-[30px] portatil:ml-[30px]"> | ||
{side?.title && side.title !== '<p><br data-mce-bogus="1"></p>' && ( | ||
<div class="[&_*]:text-[#ffffff] [&_*]:text-32 mobile:[&_*]:text-22 font-archimoto-medium font-black" | ||
dangerouslySetInnerHTML={{ __html : side.title }}> | ||
</div> | ||
)} | ||
{side?.description && side.description !== '<p><br data-mce-bogus="1"></p>' && ( | ||
<div class="[&_*]:text-[#ffffff] [&_*]:text-14 font-noto-sans" | ||
dangerouslySetInnerHTML={{ __html : side.description }}> | ||
</div> | ||
)} | ||
<div class="grid grid-cols-2-auto grid-rows-2 gap-y-[20px] gap-x-[10px] tablet:max-w-[70%]"> | ||
{side && side.device?.map(( { desktop, mobile, alt} )=> { | ||
return( | ||
<> | ||
<Picture> | ||
{mobile?.src && mobile?.width && mobile?.height && ( | ||
<Source | ||
media="(max-width: 767px)" | ||
src={mobile.src} | ||
width={mobile.width} | ||
height={mobile.height} | ||
/> | ||
)} | ||
{desktop?.src && desktop?.width && desktop?.height && ( | ||
<Source | ||
media="(min-width: 768px)" | ||
src={desktop.src} | ||
width={desktop.width} | ||
height={desktop.height} | ||
/> | ||
)} | ||
<img | ||
src={desktop?.src} | ||
width={desktop?.width} | ||
height={desktop?.height} | ||
alt={alt ? alt : "Certification"} | ||
class="portatil:w-[80%]" | ||
/> | ||
</Picture> | ||
</> | ||
) | ||
})} | ||
</div> | ||
</div> | ||
</> | ||
) | ||
} | ||
|
||
export default ImagesAndBackgroundSide; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.