@chelcee0422/polaron-design-system 2.0.17 → 2.0.18

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/dist/index.esm.js CHANGED
@@ -52,7 +52,7 @@ const H5 = ({ children, className }) => (jsx("h5", { className: `${className} fo
52
52
 
53
53
  const H6 = ({ children, className }) => (jsx("h3", { className: `${className} font-heading text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[120%]`, children: children }));
54
54
 
55
- const SubHead = ({ children, className }) => (jsx("h1", { className: `${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[125%]`, children: children }));
55
+ const SubHead = ({ children, className }) => (jsx("h3", { className: `${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[125%]`, children: children }));
56
56
 
57
57
  const ButtonMed$5 = ({ children, className, onClick }) => (jsx("button", { onClick: onClick, className: `${className} button-req-dark-primary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#26272C] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#6E7C87] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`, children: children }));
58
58
 
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm.js","sources":["../src/components/Button.tsx","../src/components/Typography/Body/Bodyxlmd.tsx","../src/components/Typography/Body/Bodyxlrg.tsx","../src/components/Typography/Body/Bodyxlsb.tsx","../src/components/Typography/Body/Bodylmd.tsx","../src/components/Typography/Body/Bodylrg.tsx","../src/components/Typography/Body/Bodylsb.tsx","../src/components/Typography/Body/Bodymmd.tsx","../src/components/Typography/Body/Bodymrg.tsx","../src/components/Typography/Body/Bodymsb.tsx","../src/components/Typography/Body/Bodysmd.tsx","../src/components/Typography/Body/Bodysrg.tsx","../src/components/Typography/Body/Bodyssb.tsx","../src/components/Typography/Body/Buttonmd.tsx","../src/components/Typography/Body/Buttonsm.tsx","../src/components/Typography/Caption/CaptionMed.tsx","../src/components/Typography/Caption/CaptionReg.tsx","../src/components/Typography/Caption/CaptionSemi.tsx","../src/components/Typography/Display/DpLg.tsx","../src/components/Typography/Display/DpMd.tsx","../src/components/Typography/Heading/H1.tsx","../src/components/Typography/Heading/H2.tsx","../src/components/Typography/Heading/H3.tsx","../src/components/Typography/Heading/H4.tsx","../src/components/Typography/Heading/H5.tsx","../src/components/Typography/Heading/H6.tsx","../src/components/Typography/Subhead/SubHead.tsx","../src/components/Typography/Button/Primary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Primary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Primary/Light/ButtonMed.tsx","../src/components/Typography/Button/Primary/Light/ButtonSm.tsx","../src/components/Typography/Button/Secondary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Secondary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Secondary/Light/ButtonMed.tsx","../src/components/Typography/Button/Secondary/Light/ButtonSm.tsx","../src/components/Typography/Button/Tertiary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Tertiary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Tertiary/Light/ButtonMed.tsx","../src/components/Typography/Button/Tertiary/Light/ButtonSm.tsx","../src/components/Sections/Section.tsx","../src/components/Sections/SectionFooter.tsx","../src/components/Sections/SectionHeader.tsx","../src/components/Sections/SectionLarge.tsx"],"sourcesContent":["import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Button = ({ children, className }: ButtonProps) => (\r\n <button className={`${className} px-8 py-3`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodysmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodysrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyssb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Buttonmd = ({ children, className }: BodyProps) => (\r\n <p className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] font-medium leading-[130%]`}>\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Buttonsm = ({ children, className }: BodyProps) => (\r\n <p className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] font-medium leading-[130%]`}>\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionMed = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] font-medium leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionReg = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionSemi = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] font-semibold leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype DpLgProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const DpLg = ({ children, className }: DpLgProps) => (\r\n <h1\r\n className={`${className} font-heading text-[40px] tablet:text-[64px] smLaptop:text-[88px] lgLaptop:text-[88px] desktop:text-[96px] font-semibold leading-[112%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype DpMdProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const DpMd = ({ children, className }: DpMdProps) => (\r\n <h1\r\n className={`${className} font-heading text-[32px] tablet:text-[52px] smLaptop:text-[68px] lgLaptop:text-[68px] desktop:text-[80px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H1Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H1 = ({ children, className }: H1Props) => (\r\n <h1\r\n className={`${className} font-heading text-[28px] tablet:text-[36px] smLaptop:text-[48px] lgLaptop:text-[56px] desktop:text-[64px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H2Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H2 = ({ children, className }: H2Props) => (\r\n <h2\r\n className={`${className} font-heading text-[24px] tablet:text-[32px] smLaptop:text-[36px] lgLaptop:text-[40px] desktop:text-[48px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h2>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H3Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H3 = ({ children, className }: H3Props) => (\r\n <h3\r\n className={`${className} font-heading text-[20px] tablet:text-[24px] smLaptop:text-[32px] lgLaptop:text-[36px] desktop:text-[40px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h3>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H4Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H4 = ({ children, className }: H4Props) => (\r\n <h4\r\n className={`${className} font-heading text-[16px] tablet:text-[20px] smLaptop:text-[24px] lgLaptop:text-[28px] desktop:text-[32px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h4>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H5Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H5 = ({ children, className }: H5Props) => (\r\n <h5\r\n className={`${className} font-heading text-[14px] tablet:text-[16px] smLaptop:text-[20px] lgLaptop:text-[24px] desktop:text-[28px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h5>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H6Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H6 = ({ children, className }: H6Props) => (\r\n <h3\r\n className={`${className} font-heading text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h3>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SubHeadProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const SubHead = ({ children, className }: SubHeadProps) => (\r\n <h1\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[125%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#26272C] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#6E7C87] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#26272C] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#6E7C87] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-light button-req relative text-[#26272C] text-center no-underline box-border rounded-full bg-white bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#E9EAEC] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-light button-req relative text-[#26272C] text-center no-underline box-border rounded-full bg-white bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#E9EAEC] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#1D57DE] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1540A2] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#1D57DE] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1540A2] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-light button-req relative text-white text-center no-underline box-border rounded-full bg-[#2662e3] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1d57de] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-light button-req relative text-white text-center no-underline box-border rounded-full bg-[#2662e3] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1d57de] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-[#26272C] rounded-full px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] bg-[#DDE0E3] hover:bg-[#C7CCD1] active:bg-[#E9EAEC]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-[#FFFFFF] rounded-full px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] bg-[#8F9AA3] hover:bg-[#6E7C87] active:bg-[#A5AEB6]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} rounded-full px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] bg-[#DDE0E3] hover:bg-[#C7CCD1] active:bg-[#E9EAEC]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-white rounded-full px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] bg-[#8F9AA3] hover:bg-[#6E7C87] active:bg-[#A5AEB6]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the regular section in the middle of the page\r\nexport const Section = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 py-12\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:py-16\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:py-32\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the section right on top of the footer\r\n\r\nexport const SectionFooter = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 pt-12 pb-14\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:pt-16 tablet:pb-[84px]\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:pt-32 smLaptop:pb-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:pb-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the hero section\r\nexport const SectionHeader = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 pb-12 pt-[56px]\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:pb-[64px] tablet:pt-[84px]\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:pb-32 smLaptop:pt-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:pt-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the large section in the middle of the page\r\nexport const SectionLarge = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 py-[56px]\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:py-[84px] \r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:py-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:py-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n"],"names":["_jsx","ButtonMed","ButtonSm"],"mappings":"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"}
1
+ {"version":3,"file":"index.esm.js","sources":["../src/components/Button.tsx","../src/components/Typography/Body/Bodyxlmd.tsx","../src/components/Typography/Body/Bodyxlrg.tsx","../src/components/Typography/Body/Bodyxlsb.tsx","../src/components/Typography/Body/Bodylmd.tsx","../src/components/Typography/Body/Bodylrg.tsx","../src/components/Typography/Body/Bodylsb.tsx","../src/components/Typography/Body/Bodymmd.tsx","../src/components/Typography/Body/Bodymrg.tsx","../src/components/Typography/Body/Bodymsb.tsx","../src/components/Typography/Body/Bodysmd.tsx","../src/components/Typography/Body/Bodysrg.tsx","../src/components/Typography/Body/Bodyssb.tsx","../src/components/Typography/Body/Buttonmd.tsx","../src/components/Typography/Body/Buttonsm.tsx","../src/components/Typography/Caption/CaptionMed.tsx","../src/components/Typography/Caption/CaptionReg.tsx","../src/components/Typography/Caption/CaptionSemi.tsx","../src/components/Typography/Display/DpLg.tsx","../src/components/Typography/Display/DpMd.tsx","../src/components/Typography/Heading/H1.tsx","../src/components/Typography/Heading/H2.tsx","../src/components/Typography/Heading/H3.tsx","../src/components/Typography/Heading/H4.tsx","../src/components/Typography/Heading/H5.tsx","../src/components/Typography/Heading/H6.tsx","../src/components/Typography/Subhead/SubHead.tsx","../src/components/Typography/Button/Primary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Primary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Primary/Light/ButtonMed.tsx","../src/components/Typography/Button/Primary/Light/ButtonSm.tsx","../src/components/Typography/Button/Secondary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Secondary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Secondary/Light/ButtonMed.tsx","../src/components/Typography/Button/Secondary/Light/ButtonSm.tsx","../src/components/Typography/Button/Tertiary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Tertiary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Tertiary/Light/ButtonMed.tsx","../src/components/Typography/Button/Tertiary/Light/ButtonSm.tsx","../src/components/Sections/Section.tsx","../src/components/Sections/SectionFooter.tsx","../src/components/Sections/SectionHeader.tsx","../src/components/Sections/SectionLarge.tsx"],"sourcesContent":["import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Button = ({ children, className }: ButtonProps) => (\r\n <button className={`${className} px-8 py-3`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodysmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodysrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyssb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Buttonmd = ({ children, className }: BodyProps) => (\r\n <p className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] font-medium leading-[130%]`}>\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Buttonsm = ({ children, className }: BodyProps) => (\r\n <p className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] font-medium leading-[130%]`}>\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionMed = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] font-medium leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionReg = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionSemi = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] font-semibold leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype DpLgProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const DpLg = ({ children, className }: DpLgProps) => (\r\n <h1\r\n className={`${className} font-heading text-[40px] tablet:text-[64px] smLaptop:text-[88px] lgLaptop:text-[88px] desktop:text-[96px] font-semibold leading-[112%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype DpMdProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const DpMd = ({ children, className }: DpMdProps) => (\r\n <h1\r\n className={`${className} font-heading text-[32px] tablet:text-[52px] smLaptop:text-[68px] lgLaptop:text-[68px] desktop:text-[80px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H1Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H1 = ({ children, className }: H1Props) => (\r\n <h1\r\n className={`${className} font-heading text-[28px] tablet:text-[36px] smLaptop:text-[48px] lgLaptop:text-[56px] desktop:text-[64px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H2Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H2 = ({ children, className }: H2Props) => (\r\n <h2\r\n className={`${className} font-heading text-[24px] tablet:text-[32px] smLaptop:text-[36px] lgLaptop:text-[40px] desktop:text-[48px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h2>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H3Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H3 = ({ children, className }: H3Props) => (\r\n <h3\r\n className={`${className} font-heading text-[20px] tablet:text-[24px] smLaptop:text-[32px] lgLaptop:text-[36px] desktop:text-[40px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h3>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H4Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H4 = ({ children, className }: H4Props) => (\r\n <h4\r\n className={`${className} font-heading text-[16px] tablet:text-[20px] smLaptop:text-[24px] lgLaptop:text-[28px] desktop:text-[32px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h4>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H5Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H5 = ({ children, className }: H5Props) => (\r\n <h5\r\n className={`${className} font-heading text-[14px] tablet:text-[16px] smLaptop:text-[20px] lgLaptop:text-[24px] desktop:text-[28px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h5>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H6Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H6 = ({ children, className }: H6Props) => (\r\n <h3\r\n className={`${className} font-heading text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h3>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SubHeadProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const SubHead = ({ children, className }: SubHeadProps) => (\r\n <h3\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[125%]`}\r\n >\r\n {children}\r\n </h3>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#26272C] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#6E7C87] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#26272C] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#6E7C87] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-light button-req relative text-[#26272C] text-center no-underline box-border rounded-full bg-white bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#E9EAEC] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-light button-req relative text-[#26272C] text-center no-underline box-border rounded-full bg-white bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#E9EAEC] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#1D57DE] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1540A2] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#1D57DE] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1540A2] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-light button-req relative text-white text-center no-underline box-border rounded-full bg-[#2662e3] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1d57de] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-light button-req relative text-white text-center no-underline box-border rounded-full bg-[#2662e3] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1d57de] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-[#26272C] rounded-full px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] bg-[#DDE0E3] hover:bg-[#C7CCD1] active:bg-[#E9EAEC]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-[#FFFFFF] rounded-full px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] bg-[#8F9AA3] hover:bg-[#6E7C87] active:bg-[#A5AEB6]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} rounded-full px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] bg-[#DDE0E3] hover:bg-[#C7CCD1] active:bg-[#E9EAEC]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-white rounded-full px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] bg-[#8F9AA3] hover:bg-[#6E7C87] active:bg-[#A5AEB6]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the regular section in the middle of the page\r\nexport const Section = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 py-12\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:py-16\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:py-32\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the section right on top of the footer\r\n\r\nexport const SectionFooter = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 pt-12 pb-14\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:pt-16 tablet:pb-[84px]\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:pt-32 smLaptop:pb-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:pb-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the hero section\r\nexport const SectionHeader = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 pb-12 pt-[56px]\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:pb-[64px] tablet:pt-[84px]\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:pb-32 smLaptop:pt-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:pt-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the large section in the middle of the page\r\nexport const SectionLarge = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 py-[56px]\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:py-[84px] \r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:py-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:py-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n"],"names":["_jsx","ButtonMed","ButtonSm"],"mappings":";;AAOa,MAAA,MAAM,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAe,MACzDA,GAAA,CAAA,QAAA,EAAA,EAAQ,SAAS,EAAE,CAAG,EAAA,SAAS,YAAY,EACxC,QAAA,EAAA,QAAQ,EACF,CAAA;;ACHE,MAAA,QAAQ,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACzDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,oIAAoI,EAE1J,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,QAAQ,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACzDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,wHAAwH,EAE9I,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,QAAQ,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACzDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,sIAAsI,EAE5J,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,OAAO,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACxDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,oIAAoI,EAE1J,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,OAAO,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACxDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,wHAAwH,EAE9I,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,OAAO,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACxDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,sIAAsI,EAE5J,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,OAAO,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACxDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,oIAAoI,EAE1J,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,OAAO,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACxDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,wHAAwH,EAE9I,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,OAAO,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACxDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,sIAAsI,EAE5J,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,OAAO,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACxDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,oIAAoI,EAE1J,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,OAAO,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACxDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,wHAAwH,EAE9I,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,OAAO,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACxDA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,sIAAsI,EAE5J,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,QAAQ,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACzDA,GAAA,CAAA,GAAA,EAAA,EAAG,SAAS,EAAE,CAAG,EAAA,SAAS,+GAA+G,EACtI,QAAA,EAAA,QAAQ,EACP,CAAA;;ACHO,MAAA,QAAQ,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACzDA,GAAA,CAAA,GAAA,EAAA,EAAG,SAAS,EAAE,CAAG,EAAA,SAAS,+GAA+G,EACtI,QAAA,EAAA,QAAQ,EACP,CAAA;;ACHO,MAAA,UAAU,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAgB,MAC9DA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,oIAAoI,EAE1J,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,UAAU,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAgB,MAC9DA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,wHAAwH,EAE9I,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,WAAW,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAgB,MAC/DA,GAAA,CAAA,GAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,sIAAsI,EAE5J,QAAA,EAAA,QAAQ,EACP,CAAA;;ACLO,MAAA,IAAI,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACrDA,GAAA,CAAA,IAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,yIAAyI,EAE/J,QAAA,EAAA,QAAQ,EACN,CAAA;;ACLM,MAAA,IAAI,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAa,MACrDA,GAAA,CAAA,IAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,yIAAyI,EAE/J,QAAA,EAAA,QAAQ,EACN,CAAA;;ACLM,MAAA,EAAE,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAW,MACjDA,GAAA,CAAA,IAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,yIAAyI,EAE/J,QAAA,EAAA,QAAQ,EACN,CAAA;;ACLM,MAAA,EAAE,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAW,MACjDA,GAAA,CAAA,IAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,yIAAyI,EAE/J,QAAA,EAAA,QAAQ,EACN,CAAA;;ACLM,MAAA,EAAE,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAW,MACjDA,GAAA,CAAA,IAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,yIAAyI,EAE/J,QAAA,EAAA,QAAQ,EACN,CAAA;;ACLM,MAAA,EAAE,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAW,MACjDA,GAAA,CAAA,IAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,yIAAyI,EAE/J,QAAA,EAAA,QAAQ,EACN,CAAA;;ACLM,MAAA,EAAE,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAW,MACjDA,GAAA,CAAA,IAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,yIAAyI,EAE/J,QAAA,EAAA,QAAQ,EACN,CAAA;;ACLM,MAAA,EAAE,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAW,MACjDA,GAAA,CAAA,IAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,yIAAyI,EAE/J,QAAA,EAAA,QAAQ,EACN,CAAA;;ACLM,MAAA,OAAO,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAgB,MAC3DA,GAAA,CAAA,IAAA,EAAA,EACE,SAAS,EAAE,CAAG,EAAA,SAAS,sIAAsI,EAE5J,QAAA,EAAA,QAAQ,EACN,CAAA;;ACHA,MAAMC,WAAS,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACrED,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAAoZ,kZAAA,CAAA,EAAA,QAAA,EAClc,QAAQ,EAAA,CACF;;ACHJ,MAAME,UAAQ,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACpEF,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAAoZ,kZAAA,CAAA,EAAA,QAAA,EAClc,QAAQ,EAAA,CACF;;ACHJ,MAAMC,WAAS,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACrED,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAAqZ,mZAAA,CAAA,EAAA,QAAA,EACnc,QAAQ,EAAA,CACF;;ACHJ,MAAME,UAAQ,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACpEF,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAAqZ,mZAAA,CAAA,EAAA,QAAA,EACnc,QAAQ,EAAA,CACF;;ACHJ,MAAMC,WAAS,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACrED,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAAsZ,oZAAA,CAAA,EAAA,QAAA,EACpc,QAAQ,EAAA,CACF;;ACHJ,MAAME,UAAQ,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACpEF,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAAsZ,oZAAA,CAAA,EAAA,QAAA,EACpc,QAAQ,EAAA,CACF;;ACHJ,MAAMC,WAAS,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACrED,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAAuZ,qZAAA,CAAA,EAAA,QAAA,EACrc,QAAQ,EAAA,CACF;;ACHJ,MAAME,UAAQ,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACpEF,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAAuZ,qZAAA,CAAA,EAAA,QAAA,EACrc,QAAQ,EAAA,CACF;;ACJJ,MAAMC,WAAS,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACrED,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAAyM,uMAAA,CAAA,EAAA,QAAA,EACvP,QAAQ,EAAA,CACF;;ACHJ,MAAME,UAAQ,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACpEF,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAAyM,uMAAA,CAAA,EAAA,QAAA,EACvP,QAAQ,EAAA,CACF;;ACHJ,MAAM,SAAS,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACrEA,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAA0L,wLAAA,CAAA,EAAA,QAAA,EACxO,QAAQ,EAAA,CACF;;ACHJ,MAAM,QAAQ,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAe,MACpEA,GAAA,CAAA,QAAA,EAAA,EAAQ,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAG,EAAA,SAAS,CAAqM,mMAAA,CAAA,EAAA,QAAA,EACnP,QAAQ,EAAA,CACF;;ACHX;AACa,MAAA,OAAO,GAAG,CAAC,EACtB,QAAQ,EACR,gBAAgB,EAChB,gBAAgB,GACH,MACbA,GAAA,CAAA,SAAA,EAAA,EACE,SAAS,EAAE,CAAA;IACX,gBAAgB,CAAA;;;;;;;;;;;;;;;CAenB,EAEG,QAAA,EAAAA,GAAA,CAAA,KAAA,EAAA,EAAK,SAAS,EAAE,CAAG,EAAA,gBAAgB,CAAyB,uBAAA,CAAA,EAAA,QAAA,EACzD,QAAQ,EAAA,CACL,EACE,CAAA;;AC5BZ;AAEa,MAAA,aAAa,GAAG,CAAC,EAC5B,QAAQ,EACR,gBAAgB,EAChB,gBAAgB,GACH,MACbA,GAAA,CAAA,SAAA,EAAA,EACE,SAAS,EAAE,CAAA;IACX,gBAAgB,CAAA;;;;;;;;;;;;;;;CAenB,EAEG,QAAA,EAAAA,GAAA,CAAA,KAAA,EAAA,EAAK,SAAS,EAAE,CAAG,EAAA,gBAAgB,CAAyB,uBAAA,CAAA,EAAA,QAAA,EACzD,QAAQ,EAAA,CACL,EACE,CAAA;;AC7BZ;AACa,MAAA,aAAa,GAAG,CAAC,EAC5B,QAAQ,EACR,gBAAgB,EAChB,gBAAgB,GACH,MACbA,GAAA,CAAA,SAAA,EAAA,EACE,SAAS,EAAE,CAAA;IACX,gBAAgB,CAAA;;;;;;;;;;;;;;;CAenB,EAEG,QAAA,EAAAA,GAAA,CAAA,KAAA,EAAA,EAAK,SAAS,EAAE,CAAG,EAAA,gBAAgB,CAAyB,uBAAA,CAAA,EAAA,QAAA,EACzD,QAAQ,EAAA,CACL,EACE,CAAA;;AC5BZ;AACa,MAAA,YAAY,GAAG,CAAC,EAC3B,QAAQ,EACR,gBAAgB,EAChB,gBAAgB,GACH,MACbA,GAAA,CAAA,SAAA,EAAA,EACE,SAAS,EAAE,CAAA;IACX,gBAAgB,CAAA;;;;;;;;;;;;CAYnB,EAEG,QAAA,EAAAA,GAAA,CAAA,KAAA,EAAA,EAAK,SAAS,EAAE,CAAG,EAAA,gBAAgB,CAAyB,uBAAA,CAAA,EAAA,QAAA,EACzD,QAAQ,EAAA,CACL,EACE,CAAA;;;;"}
package/dist/index.js CHANGED
@@ -54,7 +54,7 @@ const H5 = ({ children, className }) => (jsxRuntime.jsx("h5", { className: `${cl
54
54
 
55
55
  const H6 = ({ children, className }) => (jsxRuntime.jsx("h3", { className: `${className} font-heading text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[120%]`, children: children }));
56
56
 
57
- const SubHead = ({ children, className }) => (jsxRuntime.jsx("h1", { className: `${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[125%]`, children: children }));
57
+ const SubHead = ({ children, className }) => (jsxRuntime.jsx("h3", { className: `${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[125%]`, children: children }));
58
58
 
59
59
  const ButtonMed$5 = ({ children, className, onClick }) => (jsxRuntime.jsx("button", { onClick: onClick, className: `${className} button-req-dark-primary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#26272C] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#6E7C87] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`, children: children }));
60
60
 
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/components/Button.tsx","../src/components/Typography/Body/Bodyxlmd.tsx","../src/components/Typography/Body/Bodyxlrg.tsx","../src/components/Typography/Body/Bodyxlsb.tsx","../src/components/Typography/Body/Bodylmd.tsx","../src/components/Typography/Body/Bodylrg.tsx","../src/components/Typography/Body/Bodylsb.tsx","../src/components/Typography/Body/Bodymmd.tsx","../src/components/Typography/Body/Bodymrg.tsx","../src/components/Typography/Body/Bodymsb.tsx","../src/components/Typography/Body/Bodysmd.tsx","../src/components/Typography/Body/Bodysrg.tsx","../src/components/Typography/Body/Bodyssb.tsx","../src/components/Typography/Body/Buttonmd.tsx","../src/components/Typography/Body/Buttonsm.tsx","../src/components/Typography/Caption/CaptionMed.tsx","../src/components/Typography/Caption/CaptionReg.tsx","../src/components/Typography/Caption/CaptionSemi.tsx","../src/components/Typography/Display/DpLg.tsx","../src/components/Typography/Display/DpMd.tsx","../src/components/Typography/Heading/H1.tsx","../src/components/Typography/Heading/H2.tsx","../src/components/Typography/Heading/H3.tsx","../src/components/Typography/Heading/H4.tsx","../src/components/Typography/Heading/H5.tsx","../src/components/Typography/Heading/H6.tsx","../src/components/Typography/Subhead/SubHead.tsx","../src/components/Typography/Button/Primary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Primary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Primary/Light/ButtonMed.tsx","../src/components/Typography/Button/Primary/Light/ButtonSm.tsx","../src/components/Typography/Button/Secondary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Secondary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Secondary/Light/ButtonMed.tsx","../src/components/Typography/Button/Secondary/Light/ButtonSm.tsx","../src/components/Typography/Button/Tertiary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Tertiary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Tertiary/Light/ButtonMed.tsx","../src/components/Typography/Button/Tertiary/Light/ButtonSm.tsx","../src/components/Sections/Section.tsx","../src/components/Sections/SectionFooter.tsx","../src/components/Sections/SectionHeader.tsx","../src/components/Sections/SectionLarge.tsx"],"sourcesContent":["import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Button = ({ children, className }: ButtonProps) => (\r\n <button className={`${className} px-8 py-3`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodysmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodysrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyssb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Buttonmd = ({ children, className }: BodyProps) => (\r\n <p className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] font-medium leading-[130%]`}>\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Buttonsm = ({ children, className }: BodyProps) => (\r\n <p className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] font-medium leading-[130%]`}>\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionMed = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] font-medium leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionReg = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionSemi = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] font-semibold leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype DpLgProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const DpLg = ({ children, className }: DpLgProps) => (\r\n <h1\r\n className={`${className} font-heading text-[40px] tablet:text-[64px] smLaptop:text-[88px] lgLaptop:text-[88px] desktop:text-[96px] font-semibold leading-[112%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype DpMdProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const DpMd = ({ children, className }: DpMdProps) => (\r\n <h1\r\n className={`${className} font-heading text-[32px] tablet:text-[52px] smLaptop:text-[68px] lgLaptop:text-[68px] desktop:text-[80px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H1Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H1 = ({ children, className }: H1Props) => (\r\n <h1\r\n className={`${className} font-heading text-[28px] tablet:text-[36px] smLaptop:text-[48px] lgLaptop:text-[56px] desktop:text-[64px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H2Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H2 = ({ children, className }: H2Props) => (\r\n <h2\r\n className={`${className} font-heading text-[24px] tablet:text-[32px] smLaptop:text-[36px] lgLaptop:text-[40px] desktop:text-[48px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h2>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H3Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H3 = ({ children, className }: H3Props) => (\r\n <h3\r\n className={`${className} font-heading text-[20px] tablet:text-[24px] smLaptop:text-[32px] lgLaptop:text-[36px] desktop:text-[40px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h3>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H4Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H4 = ({ children, className }: H4Props) => (\r\n <h4\r\n className={`${className} font-heading text-[16px] tablet:text-[20px] smLaptop:text-[24px] lgLaptop:text-[28px] desktop:text-[32px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h4>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H5Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H5 = ({ children, className }: H5Props) => (\r\n <h5\r\n className={`${className} font-heading text-[14px] tablet:text-[16px] smLaptop:text-[20px] lgLaptop:text-[24px] desktop:text-[28px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h5>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H6Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H6 = ({ children, className }: H6Props) => (\r\n <h3\r\n className={`${className} font-heading text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h3>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SubHeadProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const SubHead = ({ children, className }: SubHeadProps) => (\r\n <h1\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[125%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#26272C] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#6E7C87] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#26272C] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#6E7C87] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-light button-req relative text-[#26272C] text-center no-underline box-border rounded-full bg-white bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#E9EAEC] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-light button-req relative text-[#26272C] text-center no-underline box-border rounded-full bg-white bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#E9EAEC] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#1D57DE] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1540A2] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#1D57DE] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1540A2] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-light button-req relative text-white text-center no-underline box-border rounded-full bg-[#2662e3] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1d57de] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-light button-req relative text-white text-center no-underline box-border rounded-full bg-[#2662e3] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1d57de] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-[#26272C] rounded-full px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] bg-[#DDE0E3] hover:bg-[#C7CCD1] active:bg-[#E9EAEC]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-[#FFFFFF] rounded-full px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] bg-[#8F9AA3] hover:bg-[#6E7C87] active:bg-[#A5AEB6]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} rounded-full px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] bg-[#DDE0E3] hover:bg-[#C7CCD1] active:bg-[#E9EAEC]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-white rounded-full px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] bg-[#8F9AA3] hover:bg-[#6E7C87] active:bg-[#A5AEB6]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the regular section in the middle of the page\r\nexport const Section = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 py-12\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:py-16\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:py-32\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the section right on top of the footer\r\n\r\nexport const SectionFooter = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 pt-12 pb-14\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:pt-16 tablet:pb-[84px]\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:pt-32 smLaptop:pb-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:pb-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the hero section\r\nexport const SectionHeader = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 pb-12 pt-[56px]\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:pb-[64px] tablet:pt-[84px]\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:pb-32 smLaptop:pt-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:pt-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the large section in the middle of the page\r\nexport const SectionLarge = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 py-[56px]\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:py-[84px] \r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:py-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:py-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n"],"names":["_jsx","ButtonMed","ButtonSm"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../src/components/Button.tsx","../src/components/Typography/Body/Bodyxlmd.tsx","../src/components/Typography/Body/Bodyxlrg.tsx","../src/components/Typography/Body/Bodyxlsb.tsx","../src/components/Typography/Body/Bodylmd.tsx","../src/components/Typography/Body/Bodylrg.tsx","../src/components/Typography/Body/Bodylsb.tsx","../src/components/Typography/Body/Bodymmd.tsx","../src/components/Typography/Body/Bodymrg.tsx","../src/components/Typography/Body/Bodymsb.tsx","../src/components/Typography/Body/Bodysmd.tsx","../src/components/Typography/Body/Bodysrg.tsx","../src/components/Typography/Body/Bodyssb.tsx","../src/components/Typography/Body/Buttonmd.tsx","../src/components/Typography/Body/Buttonsm.tsx","../src/components/Typography/Caption/CaptionMed.tsx","../src/components/Typography/Caption/CaptionReg.tsx","../src/components/Typography/Caption/CaptionSemi.tsx","../src/components/Typography/Display/DpLg.tsx","../src/components/Typography/Display/DpMd.tsx","../src/components/Typography/Heading/H1.tsx","../src/components/Typography/Heading/H2.tsx","../src/components/Typography/Heading/H3.tsx","../src/components/Typography/Heading/H4.tsx","../src/components/Typography/Heading/H5.tsx","../src/components/Typography/Heading/H6.tsx","../src/components/Typography/Subhead/SubHead.tsx","../src/components/Typography/Button/Primary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Primary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Primary/Light/ButtonMed.tsx","../src/components/Typography/Button/Primary/Light/ButtonSm.tsx","../src/components/Typography/Button/Secondary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Secondary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Secondary/Light/ButtonMed.tsx","../src/components/Typography/Button/Secondary/Light/ButtonSm.tsx","../src/components/Typography/Button/Tertiary/Dark/ButtonMed.tsx","../src/components/Typography/Button/Tertiary/Dark/ButtonSm.tsx","../src/components/Typography/Button/Tertiary/Light/ButtonMed.tsx","../src/components/Typography/Button/Tertiary/Light/ButtonSm.tsx","../src/components/Sections/Section.tsx","../src/components/Sections/SectionFooter.tsx","../src/components/Sections/SectionHeader.tsx","../src/components/Sections/SectionLarge.tsx"],"sourcesContent":["import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Button = ({ children, className }: ButtonProps) => (\r\n <button className={`${className} px-8 py-3`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyxlsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodylsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[14px] tablet:text-[16px] smLaptop:text-[18px] lgLaptop:text-[18px] desktop:text-[20px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodymsb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[16px] desktop:text-[18px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodysmd = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] font-medium leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodysrg = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Bodyssb = ({ children, className }: BodyProps) => (\r\n <p\r\n className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] lgLaptop:text-[14px] desktop:text-[16px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Buttonmd = ({ children, className }: BodyProps) => (\r\n <p className={`${className} font-body text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] font-medium leading-[130%]`}>\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype BodyProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const Buttonsm = ({ children, className }: BodyProps) => (\r\n <p className={`${className} font-body text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] font-medium leading-[130%]`}>\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionMed = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] font-medium leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionReg = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype CaptionProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const CaptionSemi = ({ children, className }: CaptionProps) => (\r\n <p\r\n className={`${className} font-body text-[10px] tablet:text-[10px] smLaptop:text-[12px] lgLaptop:text-[12px] desktop:text-[14px] font-semibold leading-[125%]`}\r\n >\r\n {children}\r\n </p>\r\n);\r\n","import React from \"react\";\r\n\r\ntype DpLgProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const DpLg = ({ children, className }: DpLgProps) => (\r\n <h1\r\n className={`${className} font-heading text-[40px] tablet:text-[64px] smLaptop:text-[88px] lgLaptop:text-[88px] desktop:text-[96px] font-semibold leading-[112%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype DpMdProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const DpMd = ({ children, className }: DpMdProps) => (\r\n <h1\r\n className={`${className} font-heading text-[32px] tablet:text-[52px] smLaptop:text-[68px] lgLaptop:text-[68px] desktop:text-[80px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H1Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H1 = ({ children, className }: H1Props) => (\r\n <h1\r\n className={`${className} font-heading text-[28px] tablet:text-[36px] smLaptop:text-[48px] lgLaptop:text-[56px] desktop:text-[64px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h1>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H2Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H2 = ({ children, className }: H2Props) => (\r\n <h2\r\n className={`${className} font-heading text-[24px] tablet:text-[32px] smLaptop:text-[36px] lgLaptop:text-[40px] desktop:text-[48px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h2>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H3Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H3 = ({ children, className }: H3Props) => (\r\n <h3\r\n className={`${className} font-heading text-[20px] tablet:text-[24px] smLaptop:text-[32px] lgLaptop:text-[36px] desktop:text-[40px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h3>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H4Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H4 = ({ children, className }: H4Props) => (\r\n <h4\r\n className={`${className} font-heading text-[16px] tablet:text-[20px] smLaptop:text-[24px] lgLaptop:text-[28px] desktop:text-[32px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h4>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H5Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H5 = ({ children, className }: H5Props) => (\r\n <h5\r\n className={`${className} font-heading text-[14px] tablet:text-[16px] smLaptop:text-[20px] lgLaptop:text-[24px] desktop:text-[28px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h5>\r\n);\r\n","import React from \"react\";\r\n\r\ntype H6Props = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const H6 = ({ children, className }: H6Props) => (\r\n <h3\r\n className={`${className} font-heading text-[12px] tablet:text-[14px] smLaptop:text-[16px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[120%]`}\r\n >\r\n {children}\r\n </h3>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SubHeadProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n};\r\n\r\nexport const SubHead = ({ children, className }: SubHeadProps) => (\r\n <h3\r\n className={`${className} font-body text-[16px] tablet:text-[18px] smLaptop:text-[20px] lgLaptop:text-[20px] desktop:text-[24px] font-semibold leading-[125%]`}\r\n >\r\n {children}\r\n </h3>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#26272C] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#6E7C87] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#26272C] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#6E7C87] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-light button-req relative text-[#26272C] text-center no-underline box-border rounded-full bg-white bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#E9EAEC] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-primary-light button-req relative text-[#26272C] text-center no-underline box-border rounded-full bg-white bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#E9EAEC] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#1D57DE] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1540A2] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-dark button-req relative text-white text-center no-underline box-border rounded-full bg-[#1D57DE] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1540A2] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-light button-req relative text-white text-center no-underline box-border rounded-full bg-[#2662e3] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1d57de] px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n//import \"./style.css\";\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} button-req-dark-secondary-light button-req relative text-white text-center no-underline box-border rounded-full bg-[#2662e3] bg-[length:400%] border-none outline-none cursor-pointer z-0 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 hover:animate-glow active:bg-[#1d57de] px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-[#26272C] rounded-full px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] bg-[#DDE0E3] hover:bg-[#C7CCD1] active:bg-[#E9EAEC]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-[#FFFFFF] rounded-full px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] bg-[#8F9AA3] hover:bg-[#6E7C87] active:bg-[#A5AEB6]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonMed = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} rounded-full px-8 py-3 font-body font-medium leading-[130%] text-[12px] tablet:text-[14px] smLaptop:text-[16px] desktop:text-[18px] bg-[#DDE0E3] hover:bg-[#C7CCD1] active:bg-[#E9EAEC]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from 'react';\r\n\r\ntype ButtonProps = {\r\n children?: React.ReactNode;\r\n className?: string;\r\n onClick?: () => void;\r\n};\r\n\r\nexport const ButtonSm = ({ children, className, onClick }: ButtonProps) => (\r\n <button onClick={onClick} className={`${className} text-white rounded-full px-8 py-2 font-body font-medium leading-[130%] text-[11px] tablet:text-[12px] smLaptop:text-[14px] desktop:text-[16px] bg-[#8F9AA3] hover:bg-[#6E7C87] active:bg-[#A5AEB6]`}>\r\n {children}\r\n </button>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the regular section in the middle of the page\r\nexport const Section = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 py-12\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:py-16\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:py-32\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the section right on top of the footer\r\n\r\nexport const SectionFooter = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 pt-12 pb-14\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:pt-16 tablet:pb-[84px]\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:pt-32 smLaptop:pb-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:pb-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the hero section\r\nexport const SectionHeader = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 pb-12 pt-[56px]\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:pb-[64px] tablet:pt-[84px]\r\n\r\n /* Large Tablet */\r\n lgTablet:py-[84px]\r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:pb-32 smLaptop:pt-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:pt-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n","import React from \"react\";\r\n\r\ntype SectionProps = {\r\n children?: React.ReactNode;\r\n sectionClassName?: string;\r\n contentClassName?: string;\r\n};\r\n\r\n// this is for the large section in the middle of the page\r\nexport const SectionLarge = ({\r\n children,\r\n sectionClassName,\r\n contentClassName,\r\n}: SectionProps) => (\r\n <section\r\n className={`\r\n ${sectionClassName}\r\n /* Base */\r\n px-4 py-[56px]\r\n\r\n /* Tablet */\r\n tablet:px-8 tablet:py-[84px] \r\n\r\n /* Small Laptop */\r\n smLaptop:px-16 smLaptop:py-[168px]\r\n\r\n /* Large Laptop */\r\n lgLaptop:px-32 lgLaptop:py-[248px]\r\n`}\r\n >\r\n <div className={`${contentClassName} max-w-[1540px] mx-auto`}>\r\n {children}\r\n </div>\r\n </section>\r\n);\r\n"],"names":["_jsx","ButtonMed","ButtonSm"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chelcee0422/polaron-design-system",
3
- "version": "2.0.17",
3
+ "version": "2.0.18",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",