@hellobetterdigitalnz/selwynui 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.storybook/main.ts +19 -0
- package/.storybook/preview.tsx +55 -0
- package/.storybook/vitest.setup.ts +7 -0
- package/README.md +73 -0
- package/eslint.config.js +29 -0
- package/index.html +13 -0
- package/package.json +63 -0
- package/public/img/card-one.png +0 -0
- package/public/img/card-three.png +0 -0
- package/public/img/card-two.png +0 -0
- package/public/img/footer-bg-design.svg +14 -0
- package/public/img/footer-logo.svg +9 -0
- package/public/img/promo-banner-image.svg +9 -0
- package/public/img/visit-brand-piller.svg +6 -0
- package/public/img/waikirikiri-full-logo.svg +23 -0
- package/public/vite.svg +1 -0
- package/src/App.tsx +8 -0
- package/src/Components/DataDisplay/DetailsCard/DetailsCard.stories.tsx +39 -0
- package/src/Components/DataDisplay/DetailsCard/DetailsCard.tsx +87 -0
- package/src/Components/DataDisplay/DetailsCard/DetailsCardProps.tsx +12 -0
- package/src/Components/DataDisplay/DetailsCard/detailsCard.module.scss +123 -0
- package/src/Components/DataDisplay/ImageContent/ImageContent.stories.tsx +150 -0
- package/src/Components/DataDisplay/ImageContent/ImageContent.tsx +118 -0
- package/src/Components/DataDisplay/ImageContent/ImageContentMaskingImages.tsx +334 -0
- package/src/Components/DataDisplay/ImageContent/ImageContentProps.tsx +42 -0
- package/src/Components/DataDisplay/ImageContent/imageContent.module.scss +278 -0
- package/src/Components/DataDisplay/IntroBlock/IntroBlock.stories.tsx +37 -0
- package/src/Components/DataDisplay/IntroBlock/IntroBlock.tsx +37 -0
- package/src/Components/DataDisplay/IntroBlock/IntroBlockProps.tsx +10 -0
- package/src/Components/DataDisplay/IntroBlock/introBlock.module.scss +33 -0
- package/src/Components/DataDisplay/KPIBlock/KPIBlock.stories.tsx +114 -0
- package/src/Components/DataDisplay/KPIBlock/KPIBlock.tsx +35 -0
- package/src/Components/DataDisplay/KPIBlock/KPIBlockProps.tsx +13 -0
- package/src/Components/DataDisplay/KPIBlock/kpiBlock.module.scss +73 -0
- package/src/Components/DataDisplay/Pathway/Pathway.stories.tsx +27 -0
- package/src/Components/DataDisplay/Pathway/Pathway.tsx +83 -0
- package/src/Components/DataDisplay/Pathway/PathwayProps.tsx +17 -0
- package/src/Components/DataDisplay/Pathway/pathway.module.scss +124 -0
- package/src/Components/DataDisplay/PromoBannerBlock/PromoBanner.stories.tsx +45 -0
- package/src/Components/DataDisplay/PromoBannerBlock/PromoBannerBlock.tsx +74 -0
- package/src/Components/DataDisplay/PromoBannerBlock/PromoBannerBlockProps.tsx +16 -0
- package/src/Components/DataDisplay/PromoBannerBlock/promo-banner-bg-design.tsx +14 -0
- package/src/Components/DataDisplay/PromoBannerBlock/promoBanner.module.scss +172 -0
- package/src/Components/DataDisplay/index.ts +19 -0
- package/src/Components/Form/Button/Button.stories.tsx +42 -0
- package/src/Components/Form/Button/Button.tsx +69 -0
- package/src/Components/Form/Button/ButtonProps.tsx +16 -0
- package/src/Components/Form/Button/button.module.scss +132 -0
- package/src/Components/Form/index.ts +2 -0
- package/src/Components/Icons/Arrows/ArrowLeft/ArrowLeft.tsx +49 -0
- package/src/Components/Icons/Arrows/ArrowRight/ArrowRight.tsx +47 -0
- package/src/Components/Icons/Arrows/ArrowSquareOut/ArrowSquareOut.tsx +48 -0
- package/src/Components/Icons/Arrows/ArrowsDownUp/ArrowsDownUp.tsx +49 -0
- package/src/Components/Icons/Arrows/ArrowsOutCardinal/ArrowsOutCardinal.tsx +50 -0
- package/src/Components/Icons/Arrows/CaretCircleRight/CaretCircleRight.tsx +37 -0
- package/src/Components/Icons/Arrows/CaretDown/CaretDown.tsx +49 -0
- package/src/Components/Icons/Arrows/CaretLeft/CaretLeft.tsx +102 -0
- package/src/Components/Icons/Arrows/CaretRight/CaretRight.tsx +102 -0
- package/src/Components/Icons/Arrows/CaretUp/CaretUp.tsx +49 -0
- package/src/Components/Icons/Arrows/CaretUpDown/CaretUpDown.tsx +49 -0
- package/src/Components/Icons/Brands/FacebookLogo/FacebookLogo.tsx +35 -0
- package/src/Components/Icons/Brands/InstagramLogo/InstagramLogo.tsx +35 -0
- package/src/Components/Icons/Brands/LinkedinLogo/LinkedinLogo.tsx +35 -0
- package/src/Components/Icons/Brands/WindowsLogo/WindowsLogo.tsx +105 -0
- package/src/Components/Icons/Commerce/Backpack/Backpack.tsx +54 -0
- package/src/Components/Icons/Commerce/BowlSteam/BowlSteam.tsx +34 -0
- package/src/Components/Icons/Commerce/Bread/Bread.tsx +34 -0
- package/src/Components/Icons/Commerce/Cheers/Cheers.tsx +34 -0
- package/src/Components/Icons/Commerce/ChefHat/ChefHat.tsx +34 -0
- package/src/Components/Icons/Commerce/Coffee/Coffee.tsx +54 -0
- package/src/Components/Icons/Commerce/CreditCard/CreditCard.tsx +54 -0
- package/src/Components/Icons/Commerce/CurrencyDollarSimple/CurrencyDollarSimple.tsx +105 -0
- package/src/Components/Icons/Commerce/Grains/Grains.tsx +54 -0
- package/src/Components/Icons/Commerce/Scale/Scale.tsx +61 -0
- package/src/Components/Icons/Commerce/StoreFront/StoreFront.tsx +54 -0
- package/src/Components/Icons/Communication/AddressBook/AddressBook.stories.ts +28 -0
- package/src/Components/Icons/Communication/AddressBook/AddressBook.tsx +50 -0
- package/src/Components/Icons/Communication/AsterickSimple/AsteriskSimple.stories.ts +28 -0
- package/src/Components/Icons/Communication/AsterickSimple/AsteriskSimple.tsx +49 -0
- package/src/Components/Icons/Communication/Asterisk/Asterisk.stories.ts +28 -0
- package/src/Components/Icons/Communication/Asterisk/Asterisk.tsx +50 -0
- package/src/Components/Icons/Communication/At/At.stories.ts +28 -0
- package/src/Components/Icons/Communication/At/At.tsx +49 -0
- package/src/Components/Icons/Communication/Broadcast/Broadcast.stories.ts +27 -0
- package/src/Components/Icons/Communication/Broadcast/Broadcast.tsx +49 -0
- package/src/Components/Icons/Communication/Chat/Chat.stories.ts +28 -0
- package/src/Components/Icons/Communication/Chat/Chat.tsx +49 -0
- package/src/Components/Icons/Communication/ChatCircleText/ChatCircleText.tsx +87 -0
- package/src/Components/Icons/Communication/EnvelopeSimple/EnvelopeSimple.tsx +52 -0
- package/src/Components/Icons/Communication/Export/Export.tsx +52 -0
- package/src/Components/Icons/Communication/Phone/Phone.tsx +54 -0
- package/src/Components/Icons/Communication/ThumbsUp/ThumbsUp.tsx +47 -0
- package/src/Components/Icons/Communication/Translate/Translate.tsx +51 -0
- package/src/Components/Icons/Design/DropHalfBottom/DropHalfBottom.tsx +37 -0
- package/src/Components/Icons/Design/Eye/Eye.tsx +105 -0
- package/src/Components/Icons/Design/EyeSlash/EyeSlash.tsx +105 -0
- package/src/Components/Icons/Design/GearFine/GearFine.tsx +105 -0
- package/src/Components/Icons/Design/PencilLine/PencilLine.tsx +63 -0
- package/src/Components/Icons/Design/PencilSimple/PencilSimple.tsx +63 -0
- package/src/Components/Icons/Design/Ruler/Ruler.tsx +63 -0
- package/src/Components/Icons/Design/SquaresFour/SquaresFour.tsx +54 -0
- package/src/Components/Icons/Education/BookOpenText/BookOpenText.tsx +63 -0
- package/src/Components/Icons/Education/BookmarkSimple/BookmarkSimple.tsx +44 -0
- package/src/Components/Icons/Education/Certificate/Certificate.tsx +56 -0
- package/src/Components/Icons/Education/GraduationCap/GraduationCap.tsx +105 -0
- package/src/Components/Icons/Games/Cricket/Cricket.tsx +23 -0
- package/src/Components/Icons/Games/Football/Football.tsx +47 -0
- package/src/Components/Icons/Games/Golf/Golf.tsx +34 -0
- package/src/Components/Icons/HealthAndWellness/Barbell/Barbell.tsx +36 -0
- package/src/Components/Icons/IconProps.tsx +5 -0
- package/src/Components/Icons/MapAndTravel/Barn/Barn.tsx +34 -0
- package/src/Components/Icons/MapAndTravel/Bicycle/Bicycle.tsx +54 -0
- package/src/Components/Icons/MapAndTravel/Bus/Bus.tsx +54 -0
- package/src/Components/Icons/MapAndTravel/Car/Car.tsx +54 -0
- package/src/Components/Icons/MapAndTravel/ChargingStation/ChargingStation.tsx +54 -0
- package/src/Components/Icons/MapAndTravel/Farm/Farm.tsx +34 -0
- package/src/Components/Icons/MapAndTravel/Globe/Globe.tsx +61 -0
- package/src/Components/Icons/MapAndTravel/Goggles/Goggles.tsx +47 -0
- package/src/Components/Icons/MapAndTravel/House/House.tsx +61 -0
- package/src/Components/Icons/MapAndTravel/HouseSimple/HouseSimple.tsx +61 -0
- package/src/Components/Icons/MapAndTravel/MapPin/MapPin.tsx +53 -0
- package/src/Components/Icons/MapAndTravel/MapTriFold/MapTriFold.tsx +59 -0
- package/src/Components/Icons/MapAndTravel/Path/Path.tsx +35 -0
- package/src/Components/Icons/MapAndTravel/RoadHorizon/RoadHorizon.tsx +35 -0
- package/src/Components/Icons/MapAndTravel/SteeringWheel/SteeringWheel.tsx +61 -0
- package/src/Components/Icons/MapAndTravel/SwimmingPool/SwimmingPool.tsx +36 -0
- package/src/Components/Icons/MapAndTravel/Tram/Tram.tsx +35 -0
- package/src/Components/Icons/MapAndTravel/Van/Van.tsx +60 -0
- package/src/Components/Icons/MathsAndFinance/Calculator/Calculator.tsx +59 -0
- package/src/Components/Icons/MathsAndFinance/ChartBar/ChartBar.tsx +59 -0
- package/src/Components/Icons/MathsAndFinance/ChartBarHorizontal/ChartBarHorizontal.tsx +52 -0
- package/src/Components/Icons/MathsAndFinance/ChartLine/ChartLine.tsx +53 -0
- package/src/Components/Icons/MathsAndFinance/ChartLineUp/ChartLineUp.tsx +47 -0
- package/src/Components/Icons/MathsAndFinance/ChartPie/ChartPie.tsx +54 -0
- package/src/Components/Icons/MathsAndFinance/Minus/Minus.tsx +49 -0
- package/src/Components/Icons/MathsAndFinance/MinusCircle/MinusCircle.tsx +44 -0
- package/src/Components/Icons/MathsAndFinance/NumberSquareThree/NumberSquareThree.tsx +63 -0
- package/src/Components/Icons/MathsAndFinance/Plus/Plus.tsx +63 -0
- package/src/Components/Icons/MathsAndFinance/PlusCircle/PlusCircle.tsx +51 -0
- package/src/Components/Icons/MathsAndFinance/XIcon/XIcon.tsx +107 -0
- package/src/Components/Icons/Media/Camera/Camera.tsx +49 -0
- package/src/Components/Icons/Media/DiscoBall/DiscoBall.tsx +22 -0
- package/src/Components/Icons/Media/FilmStrip/FilmStrip.tsx +45 -0
- package/src/Components/Icons/Media/Microphone/Microphone.tsx +94 -0
- package/src/Components/Icons/Media/MusicNotes/MusicNotes.tsx +42 -0
- package/src/Components/Icons/Media/PlayCircle/PlayCircle.tsx +49 -0
- package/src/Components/Icons/Media/SlidersHorizontal/SlidersHorizontal.tsx +49 -0
- package/src/Components/Icons/Media/StopCircle/StopCircle.tsx +50 -0
- package/src/Components/Icons/Media/VideoCamera/VideoCamera.tsx +105 -0
- package/src/Components/Icons/OfficeAndEditing/BuildinfOffice/BuildingOffice.tsx +22 -0
- package/src/Components/Icons/OfficeAndEditing/Copy/Copy.tsx +47 -0
- package/src/Components/Icons/OfficeAndEditing/FileText/FileText.tsx +35 -0
- package/src/Components/Icons/OfficeAndEditing/Files/Files.tsx +49 -0
- package/src/Components/Icons/OfficeAndEditing/FloppyDisk/FloppyDisk.tsx +49 -0
- package/src/Components/Icons/OfficeAndEditing/Folder/Folder.tsx +61 -0
- package/src/Components/Icons/OfficeAndEditing/FolderSimplePlus/FolderSimplePlus.tsx +35 -0
- package/src/Components/Icons/OfficeAndEditing/Folders/Folders.tsx +47 -0
- package/src/Components/Icons/OfficeAndEditing/List/List.tsx +46 -0
- package/src/Components/Icons/OfficeAndEditing/ListBullets/ListBullets.tsx +59 -0
- package/src/Components/Icons/OfficeAndEditing/ListDashes/ListDashes.tsx +59 -0
- package/src/Components/Icons/OfficeAndEditing/Printer/Printer.tsx +48 -0
- package/src/Components/Icons/OfficeAndEditing/TextAa/TextAa.tsx +63 -0
- package/src/Components/Icons/OfficeAndEditing/TextColumns/TextColumns.tsx +61 -0
- package/src/Components/Icons/OfficeAndEditing/Trash/Trash.tsx +49 -0
- package/src/Components/Icons/OfficeAndEditing/TrashSimple/TrashSimple.tsx +49 -0
- package/src/Components/Icons/People/Person/Person.tsx +35 -0
- package/src/Components/Icons/People/PersonArmsSpread/PersonArmsSpread.tsx +35 -0
- package/src/Components/Icons/People/PersonSimpleBike/PersonSimpleBike.tsx +35 -0
- package/src/Components/Icons/People/PersonSimpleSki/PersonSimpleSki.tsx +34 -0
- package/src/Components/Icons/People/PersonSimpleWalk/PersonSimpleWalk.tsx +35 -0
- package/src/Components/Icons/People/User/User.tsx +61 -0
- package/src/Components/Icons/People/UserCircle/UserCircle.tsx +61 -0
- package/src/Components/Icons/People/UserSwitch/UserSwitch.tsx +61 -0
- package/src/Components/Icons/People/Users/Users.tsx +107 -0
- package/src/Components/Icons/SecurityAndWarnings/Info/Info.tsx +54 -0
- package/src/Components/Icons/SecurityAndWarnings/Key/Key.tsx +54 -0
- package/src/Components/Icons/SecurityAndWarnings/LockKeyOpen/LockKeyOpen.tsx +54 -0
- package/src/Components/Icons/SecurityAndWarnings/LockSimple/LockSimple.tsx +61 -0
- package/src/Components/Icons/SecurityAndWarnings/Question/Question.tsx +53 -0
- package/src/Components/Icons/SecurityAndWarnings/ShieldCheck/ShieldCheck.tsx +89 -0
- package/src/Components/Icons/SecurityAndWarnings/WarningCircle/WarningCircle.tsx +105 -0
- package/src/Components/Icons/SystemAndDevice/Bell/Bell.tsx +49 -0
- package/src/Components/Icons/SystemAndDevice/Check/Check.tsx +49 -0
- package/src/Components/Icons/SystemAndDevice/CheckSquare/CheckSquare.tsx +63 -0
- package/src/Components/Icons/SystemAndDevice/CloudCheck/CloudCheck.tsx +74 -0
- package/src/Components/Icons/SystemAndDevice/Desktop/Desktop.tsx +107 -0
- package/src/Components/Icons/SystemAndDevice/DeviceMobile/DeviceMobile.tsx +78 -0
- package/src/Components/Icons/SystemAndDevice/DotSixVertical/DotSixVertical.tsx +49 -0
- package/src/Components/Icons/SystemAndDevice/DotsSix/DotsSix.tsx +107 -0
- package/src/Components/Icons/SystemAndDevice/DotsThree/DotsThree.tsx +63 -0
- package/src/Components/Icons/SystemAndDevice/DotsThreeVertical/DotsThreeVertical.tsx +63 -0
- package/src/Components/Icons/SystemAndDevice/DownloadSimple/DownloadSimple.tsx +52 -0
- package/src/Components/Icons/SystemAndDevice/Gear/Gear.tsx +61 -0
- package/src/Components/Icons/SystemAndDevice/Link/Link.tsx +54 -0
- package/src/Components/Icons/SystemAndDevice/MagnifyingGlass/MagnifyingGlass.tsx +105 -0
- package/src/Components/Icons/SystemAndDevice/RadioButtonIcon/RadioButtonIcon.tsx +63 -0
- package/src/Components/Icons/SystemAndDevice/SignIn/SignIn.tsx +51 -0
- package/src/Components/Icons/SystemAndDevice/SignOut/SignOut.tsx +49 -0
- package/src/Components/Icons/SystemAndDevice/ToggleLeft/ToggleLeft.tsx +51 -0
- package/src/Components/Icons/SystemAndDevice/ToggleRight/ToggleRight.tsx +51 -0
- package/src/Components/Icons/Time/Calendar/Calendar.tsx +61 -0
- package/src/Components/Icons/Time/CalendarBank/CalendarBank.tsx +105 -0
- package/src/Components/Icons/Time/CalendarCheck/CalendarCheck.tsx +61 -0
- package/src/Components/Icons/Time/CalendarDots/CalendarDots.tsx +28 -0
- package/src/Components/Icons/Time/Clock/Clock.tsx +105 -0
- package/src/Components/Icons/Time/ClockCounterClockwise/ClockCounterClockwise.tsx +74 -0
- package/src/Components/Icons/WeatherAndNature/Bird/Bird.tsx +54 -0
- package/src/Components/Icons/WeatherAndNature/Campfire/Campfire.tsx +35 -0
- package/src/Components/Icons/WeatherAndNature/CloudSun/CloudSun.tsx +49 -0
- package/src/Components/Icons/WeatherAndNature/Cow/Cow.tsx +34 -0
- package/src/Components/Icons/WeatherAndNature/Dog/Dog.tsx +54 -0
- package/src/Components/Icons/WeatherAndNature/FishSimple/FishSimple.tsx +54 -0
- package/src/Components/Icons/WeatherAndNature/Flower/Flower.tsx +47 -0
- package/src/Components/Icons/WeatherAndNature/Moon/Moon.tsx +35 -0
- package/src/Components/Icons/WeatherAndNature/Mountains/Mountains.tsx +49 -0
- package/src/Components/Icons/WeatherAndNature/Plant/Plant.tsx +105 -0
- package/src/Components/Icons/WeatherAndNature/Snowflake/Snowflake.tsx +46 -0
- package/src/Components/Icons/WeatherAndNature/Sparkle/Sparkle.tsx +35 -0
- package/src/Components/Icons/WeatherAndNature/Sun/Sun.tsx +47 -0
- package/src/Components/Icons/WeatherAndNature/Tree/Tree.tsx +84 -0
- package/src/Components/Icons/index.ts +165 -0
- package/src/Components/Layout/Footer/Footer.stories.tsx +178 -0
- package/src/Components/Layout/Footer/Footer.tsx +32 -0
- package/src/Components/Layout/Footer/FooterBottom.tsx +21 -0
- package/src/Components/Layout/Footer/FooterBottomLeft.tsx +31 -0
- package/src/Components/Layout/Footer/FooterBottomLeftProps.tsx +13 -0
- package/src/Components/Layout/Footer/FooterBottomProps.tsx +7 -0
- package/src/Components/Layout/Footer/FooterBottomRight.tsx +47 -0
- package/src/Components/Layout/Footer/FooterBottomRightProps.tsx +7 -0
- package/src/Components/Layout/Footer/FooterItem.tsx +17 -0
- package/src/Components/Layout/Footer/FooterItemProps.tsx +8 -0
- package/src/Components/Layout/Footer/FooterMiddle.tsx +14 -0
- package/src/Components/Layout/Footer/FooterMiddleProps.tsx +8 -0
- package/src/Components/Layout/Footer/FooterProps.tsx +11 -0
- package/src/Components/Layout/Footer/FooterTop.tsx +30 -0
- package/src/Components/Layout/Footer/FooterTopProps.tsx +9 -0
- package/src/Components/Layout/Footer/footer-bg-design.tsx +21 -0
- package/src/Components/Layout/Footer/footer.module.scss +295 -0
- package/src/Components/Layout/Header/Header.stories.tsx +66 -0
- package/src/Components/Layout/Header/Header.tsx +27 -0
- package/src/Components/Layout/Header/HeaderProps.tsx +9 -0
- package/src/Components/Layout/Header/HeaderRight.tsx +12 -0
- package/src/Components/Layout/Header/HeaderRightItem.tsx +21 -0
- package/src/Components/Layout/Header/HeaderRightItemProps.tsx +13 -0
- package/src/Components/Layout/Header/HeaderRightProps.tsx +7 -0
- package/src/Components/Layout/Header/MagnifyingGlass/MagnifyingGlass.tsx +10 -0
- package/src/Components/Layout/Header/MegaMenu/MegaMenu.tsx +5 -0
- package/src/Components/Layout/Header/MegaMenu/MegaMenuProps.tsx +5 -0
- package/src/Components/Layout/Header/header.module.scss +90 -0
- package/src/Components/Layout/HeroBanner/HeroBanner.stories.tsx +77 -0
- package/src/Components/Layout/HeroBanner/HeroBanner.tsx +77 -0
- package/src/Components/Layout/HeroBanner/HeroBannerProps.tsx +10 -0
- package/src/Components/Layout/HeroBanner/LargeHeroIcon.tsx +18 -0
- package/src/Components/Layout/HeroBanner/heroBanner.module.scss +179 -0
- package/src/Components/Layout/index.ts +27 -0
- package/src/Components/Shared/Container/Container.tsx +19 -0
- package/src/Components/Shared/Container/ContainerProps.tsx +8 -0
- package/src/Components/Shared/Container/container.module.scss +13 -0
- package/src/Components/Shared/ElementHolder/ElementHolder.tsx +40 -0
- package/src/Components/Shared/ElementHolder/ElementHolderProps.tsx +18 -0
- package/src/Components/Shared/ElementHolder/elementHolder.module.scss +189 -0
- package/src/Components/Shared/index.ts +5 -0
- package/src/assets/react.svg +1 -0
- package/src/global.scss +337 -0
- package/src/globals.d.ts +1 -0
- package/src/index.ts +5 -0
- package/src/main.tsx +10 -0
- package/src/scss.d.ts +1 -0
- package/src/variable.scss +3 -0
- package/tsconfig.app.json +45 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +10 -0
- package/tsconfig.node.tsbuildinfo +1 -0
- package/vite.config.d.ts +2 -0
- package/vite.config.js +40 -0
- package/vite.config.ts +31 -0
- package/vitest.shims.d.ts +1 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import HeroBannerProps from "./HeroBannerProps.tsx";
|
|
2
|
+
import styles from './heroBanner.module.scss'
|
|
3
|
+
import Container from "../../Shared/Container/Container.tsx";
|
|
4
|
+
import LargeHeroIcon from "./LargeHeroIcon.tsx";
|
|
5
|
+
|
|
6
|
+
const HeroBanner = (props : HeroBannerProps) => {
|
|
7
|
+
|
|
8
|
+
const {heroSize = 'large', title, boldTitle, description, backgroundImg = 'https://images.pexels.com/photos/1563356/pexels-photo-1563356.jpeg', pillar = 'visit'} = props
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
if (heroSize === 'medium'){
|
|
12
|
+
return <div
|
|
13
|
+
className={`
|
|
14
|
+
${styles.hero}
|
|
15
|
+
${styles.heroMedium}
|
|
16
|
+
${pillar ? `${pillar}` : ""}
|
|
17
|
+
`}
|
|
18
|
+
>
|
|
19
|
+
<Container>
|
|
20
|
+
<div className={styles.heroWrapper}>
|
|
21
|
+
<div className={styles.content}>
|
|
22
|
+
<h1>{title} <span>{boldTitle}</span></h1>
|
|
23
|
+
{description && <p>{description}</p>}
|
|
24
|
+
</div>
|
|
25
|
+
<div className={styles.heroImg}>
|
|
26
|
+
<img src={backgroundImg} alt="hero banner" />
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
</Container>
|
|
30
|
+
</div>
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
if (heroSize === 'small'){
|
|
34
|
+
return <div
|
|
35
|
+
className={`
|
|
36
|
+
${styles.hero}
|
|
37
|
+
${styles.heroSmall}
|
|
38
|
+
${pillar ? `${pillar}` : ""}
|
|
39
|
+
`}
|
|
40
|
+
>
|
|
41
|
+
<Container>
|
|
42
|
+
<div className={styles.heroWrapper}>
|
|
43
|
+
<div className={styles.content}>
|
|
44
|
+
<h1>{title} <span>{boldTitle}</span></h1>
|
|
45
|
+
{description && <p>{description}</p>}
|
|
46
|
+
</div>
|
|
47
|
+
<div className={styles.heroImg}>
|
|
48
|
+
<img src={backgroundImg} alt="hero banner" />
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
</Container>
|
|
52
|
+
</div>
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
return <div
|
|
56
|
+
className={`
|
|
57
|
+
${styles.hero}
|
|
58
|
+
${styles.heroLarge}
|
|
59
|
+
${pillar ? `${pillar}` : ""}
|
|
60
|
+
`}
|
|
61
|
+
>
|
|
62
|
+
<div className={styles.heroImg}>
|
|
63
|
+
<img src={backgroundImg} alt="hero banner" />
|
|
64
|
+
</div>
|
|
65
|
+
<Container>
|
|
66
|
+
<div className={styles.heroWrapper}>
|
|
67
|
+
<h1>{title} <span>{boldTitle}</span></h1>
|
|
68
|
+
{description && <p>{description}</p>}
|
|
69
|
+
</div>
|
|
70
|
+
</Container>
|
|
71
|
+
<div className={styles.heroSvg}>
|
|
72
|
+
<LargeHeroIcon/>
|
|
73
|
+
</div>
|
|
74
|
+
</div>
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export default HeroBanner;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
const LargeHeroIcon = () =>{
|
|
2
|
+
return <svg xmlns="http://www.w3.org/2000/svg" width="741" height="340" viewBox="0 0 741 340" fill="none">
|
|
3
|
+
<g opacity="0.3">
|
|
4
|
+
<path opacity="0.5" d="M0 113.208C68.1991 113.208 123.5 163.901 123.5 226.417H0V113.208Z" fill="currentColor"/>
|
|
5
|
+
<path opacity="0.25" d="M247 113.208C178.801 113.208 123.5 163.901 123.5 226.417H247V113.208Z" fill="currentColor"/>
|
|
6
|
+
<path opacity="0.5" d="M741 226.417C672.801 226.417 617.5 175.724 617.5 113.208H741V226.417Z" fill="currentColor"/>
|
|
7
|
+
<path opacity="0.75" d="M123.5 226.417C191.699 226.417 247 277.109 247 339.625H123.5V226.417Z" fill="currentColor"/>
|
|
8
|
+
<path opacity="0.5" d="M247 339.625C315.199 339.625 370.5 288.933 370.5 226.417H247V339.625Z" fill="currentColor"/>
|
|
9
|
+
<path opacity="0.25" d="M494 339.625C425.801 339.625 370.5 288.932 370.5 226.417H494V339.625Z" fill="currentColor"/>
|
|
10
|
+
<path opacity="0.75" d="M617.5 226.417C549.301 226.417 494 277.109 494 339.625H617.5V226.417Z" fill="currentColor"/>
|
|
11
|
+
<path opacity="0.25" d="M494 -7.62939e-05C562.199 -7.62939e-05 617.5 50.6924 617.5 113.208H494V-7.62939e-05Z" fill="currentColor"/>
|
|
12
|
+
<path opacity="0.5" d="M370.5 226.417C438.699 226.417 494 175.724 494 113.208H370.5V226.417Z" fill="currentColor"/>
|
|
13
|
+
<path opacity="0.75" d="M247 113.208C315.199 113.208 370.5 62.5158 370.5 0H247V113.208Z" fill="currentColor"/>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default LargeHeroIcon;
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
.hero{
|
|
2
|
+
background: var(--color-bg);
|
|
3
|
+
|
|
4
|
+
&Large{
|
|
5
|
+
position: relative;
|
|
6
|
+
min-height: 90vh;
|
|
7
|
+
|
|
8
|
+
.heroImg{
|
|
9
|
+
position: absolute;
|
|
10
|
+
left: 0;
|
|
11
|
+
right: 0;
|
|
12
|
+
top: 0;
|
|
13
|
+
bottom: 0;
|
|
14
|
+
border-radius: 0 0 366px 0;
|
|
15
|
+
overflow: hidden;
|
|
16
|
+
background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 41.35%), linear-gradient(0deg, rgba(124, 132, 123, 0.05) 0%, rgba(124, 132, 123, 0.05) 100%), #000;
|
|
17
|
+
|
|
18
|
+
img{
|
|
19
|
+
width: 100%;
|
|
20
|
+
height: 100%;
|
|
21
|
+
object-fit: cover;
|
|
22
|
+
object-position: center;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.heroWrapper{
|
|
28
|
+
position: relative;
|
|
29
|
+
z-index: 10;
|
|
30
|
+
width: 100%;
|
|
31
|
+
height: 100%;
|
|
32
|
+
padding-top: 112px;
|
|
33
|
+
color: var(--color-text);
|
|
34
|
+
|
|
35
|
+
h1{
|
|
36
|
+
max-width: 898px;
|
|
37
|
+
font-size: var(--font-size-h1);
|
|
38
|
+
line-height: 1;
|
|
39
|
+
font-weight: 400;
|
|
40
|
+
letter-spacing: -7.68px;
|
|
41
|
+
|
|
42
|
+
span{
|
|
43
|
+
font-weight: 700;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.heroSvg{
|
|
50
|
+
color: var(--color-text);
|
|
51
|
+
position: absolute;
|
|
52
|
+
z-index: 5;
|
|
53
|
+
left: 0;
|
|
54
|
+
bottom: 0;
|
|
55
|
+
height: 340px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&Medium{
|
|
61
|
+
position: relative;
|
|
62
|
+
|
|
63
|
+
.heroWrapper{
|
|
64
|
+
display: flex;
|
|
65
|
+
min-height: 72vh;
|
|
66
|
+
flex-wrap: wrap;
|
|
67
|
+
|
|
68
|
+
.content{
|
|
69
|
+
display: flex;
|
|
70
|
+
flex-direction: column;
|
|
71
|
+
justify-content: center;
|
|
72
|
+
width: 50%;
|
|
73
|
+
padding:120px 0;
|
|
74
|
+
color: var(--color-text);
|
|
75
|
+
|
|
76
|
+
h1{
|
|
77
|
+
max-width: 604px;
|
|
78
|
+
font-size: var(--font-size-h2);
|
|
79
|
+
line-height: 1;
|
|
80
|
+
font-weight: 400;
|
|
81
|
+
letter-spacing: -5.6px;
|
|
82
|
+
|
|
83
|
+
span{
|
|
84
|
+
font-weight: 700;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
p{
|
|
89
|
+
font-size: 24px;
|
|
90
|
+
line-height: 1.3;
|
|
91
|
+
font-weight: 400;
|
|
92
|
+
margin-top: 90px;
|
|
93
|
+
max-width: 604px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.heroImg{
|
|
99
|
+
position: absolute;
|
|
100
|
+
right: 0;
|
|
101
|
+
width: 50%;
|
|
102
|
+
height: 100%;
|
|
103
|
+
border-radius: 500px 0 0 0;
|
|
104
|
+
overflow: hidden;
|
|
105
|
+
|
|
106
|
+
img{
|
|
107
|
+
width: 100%;
|
|
108
|
+
height: 100%;
|
|
109
|
+
object-fit: cover;
|
|
110
|
+
object-position: center;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
&Small{
|
|
121
|
+
position: relative;
|
|
122
|
+
|
|
123
|
+
.heroWrapper{
|
|
124
|
+
display: flex;
|
|
125
|
+
min-height: 50vh;
|
|
126
|
+
flex-wrap: wrap;
|
|
127
|
+
|
|
128
|
+
.content{
|
|
129
|
+
display: flex;
|
|
130
|
+
flex-direction: column;
|
|
131
|
+
justify-content: center;
|
|
132
|
+
width: 50%;
|
|
133
|
+
color: var(--color-text);
|
|
134
|
+
padding: 100px 0;
|
|
135
|
+
|
|
136
|
+
h1{
|
|
137
|
+
max-width: 604px;
|
|
138
|
+
font-size: var(--font-size-h3);
|
|
139
|
+
line-height: 1;
|
|
140
|
+
font-weight: 400;
|
|
141
|
+
letter-spacing: -3.6px;
|
|
142
|
+
|
|
143
|
+
span{
|
|
144
|
+
font-weight: 700;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
p{
|
|
149
|
+
font-size: 24px;
|
|
150
|
+
line-height: 1.3;
|
|
151
|
+
font-weight: 400;
|
|
152
|
+
margin-top: 90px;
|
|
153
|
+
max-width: 604px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.heroImg{
|
|
159
|
+
position: absolute;
|
|
160
|
+
right: 0;
|
|
161
|
+
width: 50%;
|
|
162
|
+
height: 100%;
|
|
163
|
+
border-radius: 500px 0 0 0;
|
|
164
|
+
overflow: hidden;
|
|
165
|
+
|
|
166
|
+
img{
|
|
167
|
+
width: 100%;
|
|
168
|
+
height: 100%;
|
|
169
|
+
object-fit: cover;
|
|
170
|
+
object-position: center;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// Footer
|
|
2
|
+
export { default as Footer } from './Footer/Footer';
|
|
3
|
+
export type { default as FooterProps } from './Footer/FooterProps';
|
|
4
|
+
export { default as FooterTop } from './Footer/FooterTop';
|
|
5
|
+
export type { default as FooterTopProps } from './Footer/FooterTopProps';
|
|
6
|
+
export { default as FooterMiddle } from './Footer/FooterMiddle';
|
|
7
|
+
export type { default as FooterMiddleProps } from './Footer/FooterMiddleProps';
|
|
8
|
+
export { default as FooterBottom } from './Footer/FooterBottom';
|
|
9
|
+
export type { default as FooterBottomProps } from './Footer/FooterBottomProps';
|
|
10
|
+
export { default as FooterBottomLeft } from './Footer/FooterBottomLeft';
|
|
11
|
+
export type { default as FooterBottomLeftProps } from './Footer/FooterBottomLeftProps';
|
|
12
|
+
export { default as FooerBottomRight } from './Footer/FooterBottomRight';
|
|
13
|
+
export type { default as FooterBottomRightProps } from './Footer/FooterBottomRightProps';
|
|
14
|
+
export { default as FooterItem } from './Footer/FooterItem';
|
|
15
|
+
export type {default as FooterItemProps } from './Footer/FooterItemProps';
|
|
16
|
+
|
|
17
|
+
// Header
|
|
18
|
+
export { default as Header } from './Header/Header';
|
|
19
|
+
export type { default as HeaderProps } from './Header/HeaderProps';
|
|
20
|
+
export { default as HeaderRight } from './Header/HeaderRight';
|
|
21
|
+
export type { default as HeaderRightProps } from './Header/HeaderRight';
|
|
22
|
+
export { default as HeaderRightItem } from './Header/HeaderRightItem';
|
|
23
|
+
export type { default as HeaderRightItemProps } from './Header/HeaderRightItemProps';
|
|
24
|
+
|
|
25
|
+
// HeroBanner
|
|
26
|
+
export { default as HeroBanner } from './HeroBanner/HeroBanner';
|
|
27
|
+
export type { default as HeroBannerProps } from './HeroBanner/HeroBannerProps';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import styles from "./container.module.scss";
|
|
2
|
+
import ContainerProps from "./ContainerProps.tsx";
|
|
3
|
+
import cslx from "clsx";
|
|
4
|
+
const Container = (props : ContainerProps) =>{
|
|
5
|
+
|
|
6
|
+
const {children, type="default"} = props
|
|
7
|
+
|
|
8
|
+
const className = cslx(
|
|
9
|
+
styles.container,
|
|
10
|
+
{
|
|
11
|
+
[styles.default]: type === "default",
|
|
12
|
+
})
|
|
13
|
+
|
|
14
|
+
return <div className={className}>
|
|
15
|
+
{children}
|
|
16
|
+
</div>;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default Container
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import ElementHolderProps from "./ElementHolderProps";
|
|
2
|
+
import styles from "./elementHolder.module.scss";
|
|
3
|
+
import cslx from "clsx";
|
|
4
|
+
|
|
5
|
+
const ElementHolder = (props: ElementHolderProps) => {
|
|
6
|
+
|
|
7
|
+
const {
|
|
8
|
+
children,
|
|
9
|
+
paddingTop = 'none',
|
|
10
|
+
paddingBottom = 'none',
|
|
11
|
+
marginBottom = 'none',
|
|
12
|
+
marginTop = 'none',
|
|
13
|
+
pillar = 'visit',
|
|
14
|
+
level = 'primary',
|
|
15
|
+
id = '',
|
|
16
|
+
title
|
|
17
|
+
} = props
|
|
18
|
+
|
|
19
|
+
const className = cslx(
|
|
20
|
+
styles.element,
|
|
21
|
+
`${title}`,
|
|
22
|
+
{
|
|
23
|
+
[styles[`element--pt-${paddingTop}`]]: paddingTop,
|
|
24
|
+
[styles[`element--pb-${paddingBottom}`]]: paddingBottom,
|
|
25
|
+
[styles[`element--mt-${marginTop}`]]: marginTop,
|
|
26
|
+
[styles[`element--mb-${marginBottom}`]]: marginBottom
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
pillar,
|
|
30
|
+
`${pillar}--${level}`
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
return <div id={id} className={className}>
|
|
34
|
+
<div className={styles.elementInner}>
|
|
35
|
+
{children}
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export default ElementHolder
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ReactNode } from "react"
|
|
2
|
+
|
|
3
|
+
type SpacingOption = "none" | "sm" | "md" | "lg"
|
|
4
|
+
|
|
5
|
+
interface ElementHolderProps {
|
|
6
|
+
children?: ReactNode
|
|
7
|
+
paddingTop?: SpacingOption
|
|
8
|
+
paddingBottom?: SpacingOption
|
|
9
|
+
marginBottom?: SpacingOption
|
|
10
|
+
marginTop?: SpacingOption
|
|
11
|
+
level?: 'primary' | 'secondary' | 'light'
|
|
12
|
+
pillar?: 'main' | 'live' | 'visit' | 'taste' | 'business' | 'participate'
|
|
13
|
+
inverse?: 'string'
|
|
14
|
+
id?: any
|
|
15
|
+
title?: string;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default ElementHolderProps;
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
.element {
|
|
2
|
+
background-color: var(--color-block-bg);
|
|
3
|
+
color: var(--color-block-text);
|
|
4
|
+
position: relative;
|
|
5
|
+
|
|
6
|
+
&Inner {
|
|
7
|
+
position: relative;
|
|
8
|
+
z-index: 1;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
// Padding Top
|
|
12
|
+
&--pt-none {
|
|
13
|
+
padding-top: 0;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&--pt-xsm {
|
|
17
|
+
padding-top: 72px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&--pt-sm {
|
|
21
|
+
padding-top: 90px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&--pt-md {
|
|
25
|
+
padding-top: 120px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&--pt-lg {
|
|
29
|
+
padding-top: 144px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// Padding Bottom
|
|
33
|
+
&--pb-none {
|
|
34
|
+
padding-bottom: 0;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&--pb-xsm {
|
|
38
|
+
padding-bottom: 40px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&--pb-sm {
|
|
42
|
+
padding-bottom: 48px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&--pb-md {
|
|
46
|
+
padding-bottom: 90px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&--pb-lg {
|
|
50
|
+
padding-bottom: 120px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&--pb-xl {
|
|
54
|
+
padding-bottom: 144px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// Margin Top
|
|
58
|
+
&--mt-none {
|
|
59
|
+
margin-top: 0;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
&--mt-xsm {
|
|
63
|
+
margin-top: 72px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&--mt-sm {
|
|
67
|
+
margin-top: 90px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&--mt-md {
|
|
71
|
+
margin-top: 120px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&--mt-lg {
|
|
75
|
+
margin-top: 144px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
// Margin Bottom
|
|
79
|
+
&--mb-none {
|
|
80
|
+
margin-bottom: 0;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
&--mb-xsm {
|
|
84
|
+
margin-bottom: 72px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&--mb-sm {
|
|
88
|
+
margin-bottom: 90px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
&--mb-md {
|
|
92
|
+
margin-bottom: 120px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&--mb-lg {
|
|
96
|
+
margin-bottom: 144px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
@media (max-width: 992px) {
|
|
100
|
+
|
|
101
|
+
// Padding Top
|
|
102
|
+
&--pt-none {
|
|
103
|
+
padding-top: 0;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
&--pt-xsm {
|
|
107
|
+
padding-top: 36px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
&--pt-sm {
|
|
111
|
+
padding-top: 45px;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
&--pt-md {
|
|
115
|
+
padding-top: 60px;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&--pt-lg {
|
|
119
|
+
padding-top: 72px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
// Padding Bottom
|
|
123
|
+
&--pb-none {
|
|
124
|
+
padding-bottom: 0;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
&--pb-xsm {
|
|
128
|
+
padding-bottom: 20px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
&--pb-sm {
|
|
132
|
+
padding-bottom: 24px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
&--pb-md {
|
|
136
|
+
padding-bottom: 45px;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
&--pb-lg {
|
|
140
|
+
padding-bottom: 60px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
&--pb-xl {
|
|
144
|
+
padding-bottom: 72px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
// Margin Top
|
|
148
|
+
&--mt-none {
|
|
149
|
+
margin-top: 0;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
&--mt-xsm {
|
|
153
|
+
margin-top: 36px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
&--mt-sm {
|
|
157
|
+
margin-top: 45px;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
&--mt-md {
|
|
161
|
+
margin-top: 60px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
&--mt-lg {
|
|
165
|
+
margin-top: 72px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
// Margin Bottom
|
|
169
|
+
&--mb-none {
|
|
170
|
+
margin-bottom: 0;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
&--mb-xsm {
|
|
174
|
+
margin-bottom: 36px;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
&--mb-sm {
|
|
178
|
+
margin-bottom: 45px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
&--mb-md {
|
|
182
|
+
margin-bottom: 60px;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
&--mb-lg {
|
|
186
|
+
margin-bottom: 72px;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { default as Container } from './Container/Container';
|
|
2
|
+
export type { default as ContainerProps } from './Container/ContainerProps';
|
|
3
|
+
|
|
4
|
+
export { default as ElementHolder } from './ElementHolder/ElementHolder';
|
|
5
|
+
export type { default as ElementHolderProps } from './ElementHolder/ElementHolderProps';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>
|