@npm_leadtech/legal-lib-components 7.7.3 → 7.8.2
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/css/styles.css +0 -2
- package/dist/src/components/atoms/FixedFooter/FixedFooter.d.ts +4 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooter.js +4 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooter.tsx +4 -0
- package/dist/src/components/atoms/PopularDocsItem/PopularDocsItem.styled.js +0 -9
- package/dist/src/components/atoms/PopularDocsItem/PopularDocsItem.styled.ts +0 -9
- package/dist/src/components/molecules/ContactInfo/ContactInfo.d.ts +3 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfo.js +4 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfo.styled.d.ts +2 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfo.styled.js +49 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfo.styled.ts +51 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfo.tsx +16 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfoProps.types.d.ts +5 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfoProps.types.js +1 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfoProps.types.ts +5 -0
- package/dist/src/components/molecules/ContactInfo/index.d.ts +2 -0
- package/dist/src/components/molecules/ContactInfo/index.js +1 -0
- package/dist/src/components/molecules/ContactInfo/index.ts +2 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenu.d.ts +3 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenu.js +3 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenu.styled.d.ts +4 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenu.styled.js +19 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenu.styled.ts +23 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenu.tsx +18 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenuProps.types.d.ts +10 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenuProps.types.js +1 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenuProps.types.ts +11 -0
- package/dist/src/components/molecules/FooterMenu/index.d.ts +2 -0
- package/dist/src/components/molecules/FooterMenu/index.js +1 -0
- package/dist/src/components/molecules/FooterMenu/index.ts +2 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.d.ts +3 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.js +5 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.styled.d.ts +1 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.styled.js +5 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.styled.ts +6 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.tsx +17 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinksProps.types.d.ts +8 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinksProps.types.js +1 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinksProps.types.ts +9 -0
- package/dist/src/components/molecules/SocialLinks/index.d.ts +2 -0
- package/dist/src/components/molecules/SocialLinks/index.js +1 -0
- package/dist/src/components/molecules/SocialLinks/index.ts +2 -0
- package/dist/src/components/molecules/index.d.ts +3 -0
- package/dist/src/components/molecules/index.js +3 -0
- package/dist/src/components/molecules/index.ts +3 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.d.ts +3 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.js +7 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.styled.d.ts +6 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.styled.js +35 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.styled.ts +41 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.tsx +44 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooterProps.types.d.ts +9 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooterProps.types.js +1 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooterProps.types.ts +10 -0
- package/dist/src/components/organisms/BottomFooter/index.d.ts +2 -0
- package/dist/src/components/organisms/BottomFooter/index.js +1 -0
- package/dist/src/components/organisms/BottomFooter/index.ts +2 -0
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.js +3 -3
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.styled.js +83 -35
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.styled.ts +83 -35
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.tsx +28 -5
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.d.ts +7 -1
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.ts +8 -1
- package/dist/src/components/organisms/TopFooter/TopFooter.d.ts +3 -0
- package/dist/src/components/organisms/TopFooter/TopFooter.js +7 -0
- package/dist/src/components/organisms/TopFooter/TopFooter.styled.d.ts +2 -0
- package/dist/src/components/organisms/TopFooter/TopFooter.styled.js +30 -0
- package/dist/src/components/organisms/TopFooter/TopFooter.styled.ts +32 -0
- package/dist/src/components/organisms/TopFooter/TopFooter.tsx +20 -0
- package/dist/src/components/organisms/TopFooter/TopFooterProps.types.d.ts +7 -0
- package/dist/src/components/organisms/TopFooter/TopFooterProps.types.js +1 -0
- package/dist/src/components/organisms/TopFooter/TopFooterProps.types.ts +8 -0
- package/dist/src/components/organisms/TopFooter/index.d.ts +2 -0
- package/dist/src/components/organisms/TopFooter/index.js +1 -0
- package/dist/src/components/organisms/TopFooter/index.ts +2 -0
- package/dist/src/components/organisms/index.d.ts +2 -0
- package/dist/src/components/organisms/index.js +2 -0
- package/dist/src/components/organisms/index.ts +2 -0
- package/dist/src/components/sections/CardStorySection/CardStorySection.styled.js +2 -1
- package/dist/src/components/sections/CardStorySection/CardStorySection.styled.ts +2 -1
- package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.js +2 -1
- package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.ts +2 -1
- package/dist/src/components/sections/Footer/Footer.d.ts +3 -0
- package/dist/src/components/sections/Footer/Footer.js +7 -0
- package/dist/src/components/sections/Footer/Footer.mocks.d.ts +10 -0
- package/dist/src/components/sections/Footer/Footer.mocks.js +65 -0
- package/dist/src/components/sections/Footer/Footer.mocks.ts +77 -0
- package/dist/src/components/sections/Footer/Footer.styled.d.ts +1 -0
- package/dist/src/components/sections/Footer/Footer.styled.js +9 -0
- package/dist/src/components/sections/Footer/Footer.styled.ts +10 -0
- package/dist/src/components/sections/Footer/Footer.tsx +14 -0
- package/dist/src/components/sections/Footer/FooterProps.types.d.ts +6 -0
- package/dist/src/components/sections/Footer/FooterProps.types.js +1 -0
- package/dist/src/components/sections/Footer/FooterProps.types.ts +7 -0
- package/dist/src/components/sections/Footer/index.d.ts +2 -0
- package/dist/src/components/sections/Footer/index.js +1 -0
- package/dist/src/components/sections/Footer/index.ts +2 -0
- package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.js +1 -1
- package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.tsx +5 -0
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.js +0 -2
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.ts +0 -2
- package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.js +1 -1
- package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.ts +1 -1
- package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.js +0 -1
- package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.ts +0 -1
- package/dist/src/components/sections/index.d.ts +2 -0
- package/dist/src/components/sections/index.js +2 -0
- package/dist/src/components/sections/index.ts +2 -0
- package/dist/src/globalStyles/themes.scss +0 -2
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -1
|
@@ -2,6 +2,7 @@ export * from './HeroContent'
|
|
|
2
2
|
export * from './Accordion'
|
|
3
3
|
export * from './ArticlesList'
|
|
4
4
|
export * from './AsSeeInContent'
|
|
5
|
+
export * from './BottomFooter'
|
|
5
6
|
export * from './CardFunctionality'
|
|
6
7
|
export * from './ContactContent'
|
|
7
8
|
export * from './ContactJumbotron'
|
|
@@ -23,6 +24,7 @@ export * from './MobileBottomBar'
|
|
|
23
24
|
export * from './RatafiaLoadingResultContent'
|
|
24
25
|
export * from './RatafiaResultContent'
|
|
25
26
|
export * from './StepsRatafiaContent'
|
|
27
|
+
export * from './TopFooter'
|
|
26
28
|
export * from './TryOurFreeLegalBlogsContent'
|
|
27
29
|
export * from './Wizard'
|
|
28
30
|
export * from './HowWeHelp'
|
|
@@ -7,9 +7,10 @@ export const CardStorySectionStyled = styled.div `
|
|
|
7
7
|
.card-story-section {
|
|
8
8
|
&__title {
|
|
9
9
|
font-weight: 700;
|
|
10
|
-
font-size: 1.
|
|
10
|
+
font-size: 1.75rem;
|
|
11
11
|
color: var(--neutral-neutral-1);
|
|
12
12
|
font-family: var(--font-sans);
|
|
13
|
+
letter-spacing: -0.3px;
|
|
13
14
|
padding-bottom: 1.5rem;
|
|
14
15
|
}
|
|
15
16
|
&__text {
|
|
@@ -8,9 +8,10 @@ export const CardStorySectionStyled = styled.div`
|
|
|
8
8
|
.card-story-section {
|
|
9
9
|
&__title {
|
|
10
10
|
font-weight: 700;
|
|
11
|
-
font-size: 1.
|
|
11
|
+
font-size: 1.75rem;
|
|
12
12
|
color: var(--neutral-neutral-1);
|
|
13
13
|
font-family: var(--font-sans);
|
|
14
|
+
letter-spacing: -0.3px;
|
|
14
15
|
padding-bottom: 1.5rem;
|
|
15
16
|
}
|
|
16
17
|
&__text {
|
|
@@ -14,7 +14,8 @@ export const ExpertsSectionStyled = styled.div `
|
|
|
14
14
|
.experts-section {
|
|
15
15
|
&__title {
|
|
16
16
|
font-family: var(--font-sans);
|
|
17
|
-
font-size:
|
|
17
|
+
font-size: 1.75rem;
|
|
18
|
+
color: var(--neutral-neutral-1);
|
|
18
19
|
font-weight: 700;
|
|
19
20
|
line-height: 42px;
|
|
20
21
|
letter-spacing: -0.3px;
|
|
@@ -15,7 +15,8 @@ export const ExpertsSectionStyled = styled.div`
|
|
|
15
15
|
.experts-section {
|
|
16
16
|
&__title {
|
|
17
17
|
font-family: var(--font-sans);
|
|
18
|
-
font-size:
|
|
18
|
+
font-size: 1.75rem;
|
|
19
|
+
color: var(--neutral-neutral-1);
|
|
19
20
|
font-weight: 700;
|
|
20
21
|
line-height: 42px;
|
|
21
22
|
letter-spacing: -0.3px;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { BottomFooter } from '../../organisms/BottomFooter/BottomFooter';
|
|
3
|
+
import { FooterStyled } from './Footer.styled';
|
|
4
|
+
import { TopFooter } from '../../organisms/TopFooter/TopFooter';
|
|
5
|
+
export const Footer = ({ footerTopProps, footerBottomProps }) => {
|
|
6
|
+
return (_jsxs(FooterStyled, { className: 'footer', children: [_jsx(TopFooter, { ...footerTopProps }), footerBottomProps && _jsx(BottomFooter, { ...footerBottomProps })] }));
|
|
7
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BottomFooterProps } from 'src/components/organisms/BottomFooter';
|
|
2
|
+
import { ContactInfoProps } from '../../molecules/ContactInfo/ContactInfoProps.types';
|
|
3
|
+
import { FooterMenuProps } from '../../molecules/FooterMenu/FooterMenuProps.types';
|
|
4
|
+
import { SocialLink } from '../../molecules/SocialLinks/SocialLinksProps.types';
|
|
5
|
+
import { TopFooterProps } from 'src/components/organisms/TopFooter';
|
|
6
|
+
export declare const mockMenu: FooterMenuProps;
|
|
7
|
+
export declare const mockSocialLinks: SocialLink[];
|
|
8
|
+
export declare const mockContactInfo: ContactInfoProps;
|
|
9
|
+
export declare const mockTopFooterArgs: TopFooterProps;
|
|
10
|
+
export declare const mockBottomFooterArgs: BottomFooterProps;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import facebookIcon from '../../../../images/svg/facebook.svg';
|
|
2
|
+
import linkedinIcon from '../../../../images/svg/linkedin.svg';
|
|
3
|
+
import pinterestIcon from '../../../../images/svg/pinterest.svg';
|
|
4
|
+
import xIcon from '../../../../images/svg/x.svg';
|
|
5
|
+
export const mockMenu = {
|
|
6
|
+
title: 'SERVICES',
|
|
7
|
+
links: [
|
|
8
|
+
{ name: 'Legal Documents and Forms', url: '#' },
|
|
9
|
+
{ name: 'LawGenius', url: '#' },
|
|
10
|
+
{ name: 'eSignature', url: '#' }
|
|
11
|
+
]
|
|
12
|
+
};
|
|
13
|
+
export const mockSocialLinks = [
|
|
14
|
+
{ url: 'https://facebook.com', iconSrc: facebookIcon, alt: 'Facebook' },
|
|
15
|
+
{ url: 'https://twitter.com', iconSrc: xIcon, alt: 'Twitter' },
|
|
16
|
+
{ url: 'https://pinterest.com', iconSrc: pinterestIcon, alt: 'Pinterest' },
|
|
17
|
+
{ url: 'https://linkedin.com', iconSrc: linkedinIcon, alt: 'LinkedIn' }
|
|
18
|
+
];
|
|
19
|
+
export const mockContactInfo = {
|
|
20
|
+
phoneNumber: '1-800-123-4567',
|
|
21
|
+
schedule: 'Contact Hours: Sun-Sat 9am - 7pm ET',
|
|
22
|
+
languageSelector: ''
|
|
23
|
+
};
|
|
24
|
+
export const mockTopFooterArgs = {
|
|
25
|
+
menus: [
|
|
26
|
+
mockMenu,
|
|
27
|
+
{
|
|
28
|
+
title: 'POPULAR DOCUMENTS',
|
|
29
|
+
links: [
|
|
30
|
+
{ name: 'Bill of Sale', url: '#' },
|
|
31
|
+
{ name: 'Living Will', url: '#' },
|
|
32
|
+
{ name: 'Power of Attorney', url: '#' },
|
|
33
|
+
{ name: 'Residential Lease Agreement', url: '#' }
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
title: 'RESOURCES',
|
|
38
|
+
links: [
|
|
39
|
+
{ name: 'Articles', url: '#', rel: 'nofollow' },
|
|
40
|
+
{ name: 'Legal Dictionary', url: '#', dataQa: 'legal-dictionary' }
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
title: 'Help',
|
|
45
|
+
links: [
|
|
46
|
+
{ name: 'FAQs', url: '#' },
|
|
47
|
+
{ name: 'Contact Us', url: '#' },
|
|
48
|
+
{ name: 'Pricing', url: '#' }
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
contactInfo: mockContactInfo,
|
|
53
|
+
trustPilotWidget: 'TRUSTPILOTWIDGET'
|
|
54
|
+
};
|
|
55
|
+
export const mockBottomFooterArgs = {
|
|
56
|
+
siteName: 'LawDistrict',
|
|
57
|
+
companyLinks: [
|
|
58
|
+
{ name: 'Terms of Service', url: '#' },
|
|
59
|
+
{ name: 'Privacy Policy', url: '#' },
|
|
60
|
+
{ name: 'Cookie Policy', url: '#' }
|
|
61
|
+
],
|
|
62
|
+
socialLinks: mockSocialLinks,
|
|
63
|
+
disclaimerText: 'Lawdistrict.com offers various models of legal documents, as well as additional functionalities, for different needs and purposes. By using our online document editor you will obtain a completely customized legal document for a fee. We are not a law firm and, therefore, do not provide official legal advice. If you need further legal assistance, we suggest consulting an attorney or a law firm in your jurisdiction that specializes in your specific legal matter. You take sole responsibility for the use of the legal documents and information provided.',
|
|
64
|
+
copyrightText: `© ${new Date().getFullYear()} www.lawdistrict.com All Rights Reserved.`
|
|
65
|
+
};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { BottomFooterProps } from 'src/components/organisms/BottomFooter'
|
|
2
|
+
import { ContactInfoProps } from '../../molecules/ContactInfo/ContactInfoProps.types'
|
|
3
|
+
import { FooterMenuProps } from '../../molecules/FooterMenu/FooterMenuProps.types'
|
|
4
|
+
import { SocialLink } from '../../molecules/SocialLinks/SocialLinksProps.types'
|
|
5
|
+
import { TopFooterProps } from 'src/components/organisms/TopFooter'
|
|
6
|
+
|
|
7
|
+
import facebookIcon from '../../../../images/svg/facebook.svg'
|
|
8
|
+
import linkedinIcon from '../../../../images/svg/linkedin.svg'
|
|
9
|
+
import pinterestIcon from '../../../../images/svg/pinterest.svg'
|
|
10
|
+
import xIcon from '../../../../images/svg/x.svg'
|
|
11
|
+
|
|
12
|
+
export const mockMenu: FooterMenuProps = {
|
|
13
|
+
title: 'SERVICES',
|
|
14
|
+
links: [
|
|
15
|
+
{ name: 'Legal Documents and Forms', url: '#' },
|
|
16
|
+
{ name: 'LawGenius', url: '#' },
|
|
17
|
+
{ name: 'eSignature', url: '#' }
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export const mockSocialLinks: SocialLink[] = [
|
|
22
|
+
{ url: 'https://facebook.com', iconSrc: facebookIcon, alt: 'Facebook' },
|
|
23
|
+
{ url: 'https://twitter.com', iconSrc: xIcon, alt: 'Twitter' },
|
|
24
|
+
{ url: 'https://pinterest.com', iconSrc: pinterestIcon, alt: 'Pinterest' },
|
|
25
|
+
{ url: 'https://linkedin.com', iconSrc: linkedinIcon, alt: 'LinkedIn' }
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
export const mockContactInfo: ContactInfoProps = {
|
|
29
|
+
phoneNumber: '1-800-123-4567',
|
|
30
|
+
schedule: 'Contact Hours: Sun-Sat 9am - 7pm ET',
|
|
31
|
+
languageSelector: ''
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export const mockTopFooterArgs: TopFooterProps = {
|
|
35
|
+
menus: [
|
|
36
|
+
mockMenu,
|
|
37
|
+
{
|
|
38
|
+
title: 'POPULAR DOCUMENTS',
|
|
39
|
+
links: [
|
|
40
|
+
{ name: 'Bill of Sale', url: '#' },
|
|
41
|
+
{ name: 'Living Will', url: '#' },
|
|
42
|
+
{ name: 'Power of Attorney', url: '#' },
|
|
43
|
+
{ name: 'Residential Lease Agreement', url: '#' }
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
title: 'RESOURCES',
|
|
48
|
+
links: [
|
|
49
|
+
{ name: 'Articles', url: '#', rel: 'nofollow' },
|
|
50
|
+
{ name: 'Legal Dictionary', url: '#', dataQa: 'legal-dictionary' }
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
title: 'Help',
|
|
55
|
+
links: [
|
|
56
|
+
{ name: 'FAQs', url: '#' },
|
|
57
|
+
{ name: 'Contact Us', url: '#' },
|
|
58
|
+
{ name: 'Pricing', url: '#' }
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
contactInfo: mockContactInfo,
|
|
63
|
+
trustPilotWidget: 'TRUSTPILOTWIDGET'
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export const mockBottomFooterArgs: BottomFooterProps = {
|
|
67
|
+
siteName: 'LawDistrict',
|
|
68
|
+
companyLinks: [
|
|
69
|
+
{ name: 'Terms of Service', url: '#' },
|
|
70
|
+
{ name: 'Privacy Policy', url: '#' },
|
|
71
|
+
{ name: 'Cookie Policy', url: '#' }
|
|
72
|
+
],
|
|
73
|
+
socialLinks: mockSocialLinks,
|
|
74
|
+
disclaimerText:
|
|
75
|
+
'Lawdistrict.com offers various models of legal documents, as well as additional functionalities, for different needs and purposes. By using our online document editor you will obtain a completely customized legal document for a fee. We are not a law firm and, therefore, do not provide official legal advice. If you need further legal assistance, we suggest consulting an attorney or a law firm in your jurisdiction that specializes in your specific legal matter. You take sole responsibility for the use of the legal documents and information provided.',
|
|
76
|
+
copyrightText: `© ${new Date().getFullYear()} www.lawdistrict.com All Rights Reserved.`
|
|
77
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const FooterStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BottomFooter } from '../../organisms/BottomFooter/BottomFooter'
|
|
2
|
+
import { FooterProps } from './FooterProps.types'
|
|
3
|
+
import { FooterStyled } from './Footer.styled'
|
|
4
|
+
import React from 'react'
|
|
5
|
+
import { TopFooter } from '../../organisms/TopFooter/TopFooter'
|
|
6
|
+
|
|
7
|
+
export const Footer: React.FC<FooterProps> = ({ footerTopProps, footerBottomProps }) => {
|
|
8
|
+
return (
|
|
9
|
+
<FooterStyled className='footer'>
|
|
10
|
+
<TopFooter {...footerTopProps} />
|
|
11
|
+
{footerBottomProps && <BottomFooter {...footerBottomProps} />}
|
|
12
|
+
</FooterStyled>
|
|
13
|
+
)
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Footer } from './Footer';
|
|
@@ -2,6 +2,6 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { GuidelinesContent } from '../../organisms/GuidelinesContent';
|
|
3
3
|
import { GuidelinesSectionStyled } from './GuidelinesSection.styled';
|
|
4
4
|
const GuidelinesSection = ({ contentGuidelines }) => {
|
|
5
|
-
return (_jsx(GuidelinesSectionStyled, { className: 'guidelines-section', children: _jsx(GuidelinesContent, { title: contentGuidelines.title, image: contentGuidelines.image, detail: contentGuidelines.detail, children: contentGuidelines.children }) }));
|
|
5
|
+
return (_jsx(GuidelinesSectionStyled, { className: 'guidelines-section', children: _jsx(GuidelinesContent, { title: contentGuidelines.title, image: contentGuidelines.image, detail: contentGuidelines.detail, tryNowText: contentGuidelines.tryNowText, tryNowButtonText: contentGuidelines.tryNowButtonText, tryNowButtonLink: contentGuidelines.tryNowButtonLink, tryNowButtonDataQa: contentGuidelines.tryNowButtonDataQa, tryNowImage: contentGuidelines.tryNowImage, children: contentGuidelines.children }) }));
|
|
6
6
|
};
|
|
7
7
|
export default GuidelinesSection;
|
|
@@ -11,6 +11,11 @@ const GuidelinesSection: FC<GuidelinesSectionProps> = ({ contentGuidelines }) =>
|
|
|
11
11
|
title={contentGuidelines.title}
|
|
12
12
|
image={contentGuidelines.image}
|
|
13
13
|
detail={contentGuidelines.detail}
|
|
14
|
+
tryNowText={contentGuidelines.tryNowText}
|
|
15
|
+
tryNowButtonText={contentGuidelines.tryNowButtonText}
|
|
16
|
+
tryNowButtonLink={contentGuidelines.tryNowButtonLink}
|
|
17
|
+
tryNowButtonDataQa={contentGuidelines.tryNowButtonDataQa}
|
|
18
|
+
tryNowImage={contentGuidelines.tryNowImage}
|
|
14
19
|
>
|
|
15
20
|
{contentGuidelines.children}
|
|
16
21
|
</GuidelinesContent>
|
package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.js
CHANGED
|
@@ -17,8 +17,6 @@ export const HowGetYourFormsSectionStyled = styled.section `
|
|
|
17
17
|
font-family: var(--font-serif);
|
|
18
18
|
text-align: center;
|
|
19
19
|
padding-top: 4rem;
|
|
20
|
-
padding-right: 1.5rem;
|
|
21
|
-
padding-left: 1.5rem;
|
|
22
20
|
@media only screen and (max-width: ${size.md}) {
|
|
23
21
|
padding-top: 2.5rem;
|
|
24
22
|
}
|
package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.ts
CHANGED
|
@@ -18,8 +18,6 @@ export const HowGetYourFormsSectionStyled = styled.section`
|
|
|
18
18
|
font-family: var(--font-serif);
|
|
19
19
|
text-align: center;
|
|
20
20
|
padding-top: 4rem;
|
|
21
|
-
padding-right: 1.5rem;
|
|
22
|
-
padding-left: 1.5rem;
|
|
23
21
|
@media only screen and (max-width: ${size.md}) {
|
|
24
22
|
padding-top: 2.5rem;
|
|
25
23
|
}
|
|
@@ -7,6 +7,7 @@ export * from './CardBoxSection';
|
|
|
7
7
|
export * from './ContactSection';
|
|
8
8
|
export * from './ExpertsSection';
|
|
9
9
|
export * from './FaqSection';
|
|
10
|
+
export * from './Footer';
|
|
10
11
|
export * from './FeaturesRatafiaSection';
|
|
11
12
|
export * from './FunctionalityCardsSection';
|
|
12
13
|
export * from './GuidelinesSection';
|
|
@@ -25,3 +26,4 @@ export * from './UnsubscribeSection';
|
|
|
25
26
|
export * from './WhyLawDistrictSection';
|
|
26
27
|
export * from './LearnMoreSection';
|
|
27
28
|
export * from './CardStorySection';
|
|
29
|
+
export * from './Footer';
|
|
@@ -7,6 +7,7 @@ export * from './CardBoxSection';
|
|
|
7
7
|
export * from './ContactSection';
|
|
8
8
|
export * from './ExpertsSection';
|
|
9
9
|
export * from './FaqSection';
|
|
10
|
+
export * from './Footer';
|
|
10
11
|
export * from './FeaturesRatafiaSection';
|
|
11
12
|
export * from './FunctionalityCardsSection';
|
|
12
13
|
export * from './GuidelinesSection';
|
|
@@ -25,3 +26,4 @@ export * from './UnsubscribeSection';
|
|
|
25
26
|
export * from './WhyLawDistrictSection';
|
|
26
27
|
export * from './LearnMoreSection';
|
|
27
28
|
export * from './CardStorySection';
|
|
29
|
+
export * from './Footer';
|
|
@@ -7,6 +7,7 @@ export * from './CardBoxSection'
|
|
|
7
7
|
export * from './ContactSection'
|
|
8
8
|
export * from './ExpertsSection'
|
|
9
9
|
export * from './FaqSection'
|
|
10
|
+
export * from './Footer'
|
|
10
11
|
export * from './FeaturesRatafiaSection'
|
|
11
12
|
export * from './FunctionalityCardsSection'
|
|
12
13
|
export * from './GuidelinesSection'
|
|
@@ -25,3 +26,4 @@ export * from './UnsubscribeSection'
|
|
|
25
26
|
export * from './WhyLawDistrictSection'
|
|
26
27
|
export * from './LearnMoreSection'
|
|
27
28
|
export * from './CardStorySection'
|
|
29
|
+
export * from './Footer'
|