namirasoft-site-react 1.2.51 → 1.2.54
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/App.js +2 -2
- package/dist/App.js.map +1 -1
- package/dist/assets/images/map_location.png +0 -0
- package/dist/components/NSCard.d.ts +2 -5
- package/dist/components/NSCard.js +3 -3
- package/dist/components/NSCard.js.map +1 -1
- package/dist/components/NSCard.module.css +10 -1
- package/dist/components/NSEntityBar.d.ts +12 -0
- package/dist/components/NSEntityBar.js +10 -0
- package/dist/components/NSEntityBar.js.map +1 -0
- package/dist/components/NSEntityBar.module.css +53 -0
- package/dist/components/NSLayoutTitle.d.ts +4 -1
- package/dist/components/NSLayoutTitle.js +5 -2
- package/dist/components/NSLayoutTitle.js.map +1 -1
- package/dist/components/NSLinkBlue.d.ts +17 -0
- package/dist/components/NSLinkBlue.js +20 -0
- package/dist/components/NSLinkBlue.js.map +1 -0
- package/dist/components/NSLinkBlue.module.css +24 -0
- package/dist/components/NSMap.d.ts +12 -0
- package/dist/components/NSMap.js +18 -0
- package/dist/components/NSMap.js.map +1 -0
- package/dist/components/NSSection.d.ts +15 -0
- package/dist/components/NSSection.js +27 -0
- package/dist/components/NSSection.js.map +1 -0
- package/dist/components/NSSection.module.css +10 -0
- package/dist/components/NSSectionBars.d.ts +11 -0
- package/dist/components/NSSectionBars.js +14 -0
- package/dist/components/NSSectionBars.js.map +1 -0
- package/dist/components/NSSectionBars.module.css +11 -0
- package/dist/components/NSSectionCards.d.ts +23 -0
- package/dist/components/NSSectionCards.js +19 -0
- package/dist/components/NSSectionCards.js.map +1 -0
- package/dist/components/NSSectionCards.module.css +38 -0
- package/dist/components/NSSectionTitle.d.ts +15 -0
- package/dist/components/NSSectionTitle.js +11 -0
- package/dist/components/NSSectionTitle.js.map +1 -0
- package/dist/components/NSSectionTitle.module.css +0 -0
- package/dist/components/NSSelectBox.js +1 -2
- package/dist/components/NSSelectBox.js.map +1 -1
- package/dist/components/NSTitle.d.ts +10 -0
- package/dist/components/NSTitle.js +11 -0
- package/dist/components/NSTitle.js.map +1 -0
- package/dist/components/NSTitle.module.css +9 -0
- package/dist/main.d.ts +8 -2
- package/dist/main.js +8 -2
- package/dist/main.js.map +1 -1
- package/dist/types/Background.d.ts +5 -0
- package/dist/types/Background.js +2 -0
- package/dist/types/Background.js.map +1 -0
- package/package.json +12 -9
- package/src/App.tsx +1 -2
- package/src/assets/images/map_location.png +0 -0
- package/src/components/NSCard.module.css +10 -1
- package/src/components/NSCard.tsx +16 -16
- package/src/components/NSEntityBar.module.css +53 -0
- package/src/components/NSEntityBar.tsx +32 -0
- package/src/components/NSLayoutTitle.tsx +14 -11
- package/src/components/NSLinkBlue.module.css +24 -0
- package/src/components/NSLinkBlue.tsx +45 -0
- package/src/components/NSMap.tsx +38 -0
- package/src/components/NSSection.module.css +10 -0
- package/src/components/NSSection.tsx +48 -0
- package/src/components/NSSectionBars.module.css +11 -0
- package/src/components/NSSectionBars.tsx +35 -0
- package/src/components/NSSectionCards.module.css +38 -0
- package/src/components/NSSectionCards.tsx +69 -0
- package/src/components/NSSectionTitle.module.css +0 -0
- package/src/components/NSSectionTitle.tsx +28 -0
- package/src/components/NSSelectBox.tsx +2 -3
- package/src/components/NSTitle.module.css +9 -0
- package/src/components/NSTitle.tsx +25 -0
- package/src/main.ts +8 -2
- package/src/types/Background.ts +6 -0
- package/dist/components/NSBoxPosition.d.ts +0 -20
- package/dist/components/NSBoxPosition.js +0 -14
- package/dist/components/NSBoxPosition.js.map +0 -1
- package/dist/components/NSBoxPosition.module.css +0 -81
- package/dist/components/NSBoxSection.d.ts +0 -20
- package/dist/components/NSBoxSection.js +0 -28
- package/dist/components/NSBoxSection.js.map +0 -1
- package/dist/components/NSBoxSection.module.css +0 -26
- package/dist/components/NSParentCard.module.css +0 -35
- package/src/components/NSBoxPosition.module.css +0 -81
- package/src/components/NSBoxPosition.tsx +0 -56
- package/src/components/NSBoxSection.module.css +0 -26
- package/src/components/NSBoxSection.tsx +0 -73
- package/src/components/NSParentCard.module.css +0 -35
- package/src/components/NSParentCard.tsx.temp +0 -59
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/* .section_card_container {
|
|
2
|
-
display: flex;
|
|
3
|
-
flex-direction: column;
|
|
4
|
-
justify-content: center;
|
|
5
|
-
align-items: center;
|
|
6
|
-
padding: 48px 0;
|
|
7
|
-
gap: 48px;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.section_card_details>h2 {
|
|
11
|
-
color: inherit;
|
|
12
|
-
font-size: 32px;
|
|
13
|
-
font-weight: 700;
|
|
14
|
-
line-height: normal;
|
|
15
|
-
font-style: normal;
|
|
16
|
-
text-align: center;
|
|
17
|
-
margin-bottom: 16px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.section_card_details>p {
|
|
21
|
-
color: inherit;
|
|
22
|
-
font-size: 16px;
|
|
23
|
-
font-weight: 400;
|
|
24
|
-
line-height: normal;
|
|
25
|
-
font-style: normal;
|
|
26
|
-
margin-bottom: 0;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.ns_card_container {
|
|
30
|
-
display: flex;
|
|
31
|
-
flex-direction: row;
|
|
32
|
-
flex-wrap: wrap;
|
|
33
|
-
justify-content: space-between;
|
|
34
|
-
gap: 24px;
|
|
35
|
-
} */
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
//// "use client"
|
|
2
|
-
|
|
3
|
-
// import { Component } from 'react';
|
|
4
|
-
// import Styles from './NSParentCard.module.css';
|
|
5
|
-
|
|
6
|
-
// interface IPropsCard
|
|
7
|
-
// {
|
|
8
|
-
// title: string,
|
|
9
|
-
// src: string,
|
|
10
|
-
// alt?: string | undefined,
|
|
11
|
-
// description?: string | undefined,
|
|
12
|
-
// has_link: boolean,
|
|
13
|
-
// href?: string | undefined,
|
|
14
|
-
// target?: string | undefined
|
|
15
|
-
// link_text?: string,
|
|
16
|
-
// }
|
|
17
|
-
|
|
18
|
-
// interface IProps
|
|
19
|
-
// {
|
|
20
|
-
// background?: {
|
|
21
|
-
// backgroundColor?: string,
|
|
22
|
-
// backgroundImage?: string,
|
|
23
|
-
// },
|
|
24
|
-
// section_title: string,
|
|
25
|
-
// section_description?: string | undefined,
|
|
26
|
-
// card: IPropsCard,
|
|
27
|
-
// cards: IPropsCard[]
|
|
28
|
-
// }
|
|
29
|
-
|
|
30
|
-
// interface IState
|
|
31
|
-
// { }
|
|
32
|
-
|
|
33
|
-
// export class NSParentCard extends Component<IProps, IState> {
|
|
34
|
-
// override render()
|
|
35
|
-
// {
|
|
36
|
-
// return (
|
|
37
|
-
|
|
38
|
-
// <>
|
|
39
|
-
// <section className={` ${Styles.section_card_container}`}>
|
|
40
|
-
// <div className="ns-section-whitespace">
|
|
41
|
-
// <div className="container mx-auto px-4 lg:px-12">
|
|
42
|
-
// <div className={Styles.section_card_details}>
|
|
43
|
-
// <h2> {this.props.section_title} </h2>
|
|
44
|
-
// <p> {this.props.section_description} </p>
|
|
45
|
-
// </div>
|
|
46
|
-
// </div>
|
|
47
|
-
// </div>
|
|
48
|
-
// </section>
|
|
49
|
-
|
|
50
|
-
// <section className={Styles.section_card_container} style={this.props.background} >
|
|
51
|
-
// <div className={Styles.section_card_details}>
|
|
52
|
-
// <h2> {this.props.section_title} </h2>
|
|
53
|
-
// <p> {this.props.section_description} </p>
|
|
54
|
-
// </div>
|
|
55
|
-
// </section>
|
|
56
|
-
// </>
|
|
57
|
-
// );
|
|
58
|
-
// }
|
|
59
|
-
// };
|