@@ -6,106 +6,106 @@ import Accordion from '@components/Accordion/Accordion.astro'
6
6
7
7
<!DOCTYPE html >
8
8
<html lang =" en" >
9
- <head >
10
- <meta charset =" utf-8" />
11
- <link rel =" icon" type =" image/svg+xml" href =" /img/favicon.svg" />
12
- <meta name =" viewport" content =" width=device-width" />
13
- <title >Webcore</title >
14
- </head >
15
- <body >
16
- <div class =" container" >
17
- <img src =" /img/logo.png" alt =" Logo" />
18
- <h1 >
19
- Component library for <br />
20
- <span class =" a" >Astro</span >,
21
- <span class =" s" >Svelte</span >, and
22
- <span class =" r" >React</span >
23
- </h1 >
24
- <h2 >
25
- Rocket launch your frontend projects with fully coded components. <br />
26
- Configurable. Themeable. Accessible.
27
- </h2 >
28
- <div class =" cta" >
29
- <Button
30
- href =" https://github.com/Frontendland/webcoreui" target =" _blank"
31
- theme =" secondary"
32
- >
33
- <img src =" /icons/github.svg" alt =" GitHub" width ={ 20 } height ={ 20 } />
34
- GitHub
35
- </Button >
36
- </div >
37
- <div class =" grid md-2 lg-3" >
38
- <Card title =" Accordion" element =" a" href =" /accordion" >
39
- <Accordion
40
- items ={ [{
41
- title: ' Do you offer support?' ,
42
- content: ' We provide 30 days of support.'
43
- }, {
44
- title: ' Can I request customizations?' ,
45
- content: ' Yes!'
46
- }, {
47
- title: ' Are there any refunds?' ,
48
- content: ' Hopefully.'
49
- }]}
50
- />
51
- </Card >
52
- </div >
53
- </div >
54
- </body >
9
+ <head >
10
+ <meta charset =" utf-8" />
11
+ <link rel =" icon" type =" image/svg+xml" href =" /img/favicon.svg" />
12
+ <meta name =" viewport" content =" width=device-width" />
13
+ <title >Webcore</title >
14
+ </head >
15
+ <body >
16
+ <div class =" container" >
17
+ <img src =" /img/logo.png" alt =" Logo" />
18
+ <h1 >
19
+ Component library for <br />
20
+ <span class =" a" >Astro</span >,
21
+ <span class =" s" >Svelte</span >, and
22
+ <span class =" r" >React</span >
23
+ </h1 >
24
+ <h2 >
25
+ Rocket launch your frontend projects with fully coded components. <br />
26
+ Configurable. Themeable. Accessible.
27
+ </h2 >
28
+ <div class =" cta" >
29
+ <Button
30
+ href =" https://github.com/Frontendland/webcoreui" target =" _blank"
31
+ theme =" secondary"
32
+ >
33
+ <img src =" /icons/github.svg" alt =" GitHub" width ={ 20 } height ={ 20 } />
34
+ GitHub
35
+ </Button >
36
+ </div >
37
+ <div class =" grid md-2 lg-3" >
38
+ <Card title =" Accordion" element =" a" href =" /accordion" >
39
+ <Accordion
40
+ items ={ [{
41
+ title: ' Do you offer support?' ,
42
+ content: ' We provide 30 days of support.'
43
+ }, {
44
+ title: ' Can I request customizations?' ,
45
+ content: ' Yes!'
46
+ }, {
47
+ title: ' Are there any refunds?' ,
48
+ content: ' Hopefully.'
49
+ }]}
50
+ />
51
+ </Card >
52
+ </div >
53
+ </div >
54
+ </body >
55
55
</html >
56
56
57
57
<style is:global lang =" scss" >
58
58
@import '../scss/index.scss';
59
- @include Setup((
60
- fontRegular: '/fonts/Inter-Regular.woff2',
61
- fontBold: '/fonts/Inter-Bold.woff2'
62
- ));
63
-
64
- .container {
65
- margin-top: 20px;
66
- }
67
-
68
- h1 {
69
- margin: 100px 0 10px;
70
- font-size: 48px;
71
- text-align: center;
72
-
73
- .a {
74
- background: #B545ED;
75
- background: linear-gradient(to right, #505FFF, #B545ED);
76
- background-clip: text;
77
- -webkit-background-clip: text;
78
- -webkit-text-fill-color: transparent;
79
- }
80
-
81
- .s {
82
- color: #FF3E00;
83
- }
84
-
85
- .r {
86
- color: #61DAFB;
87
- }
88
- }
89
-
90
- h2 {
91
- color: #DDD;
92
- font-family: Regular;
93
- font-weight: 400;
94
- text-align: center;
95
- line-height: 1.5;
96
- font-size: 24px;
97
- margin: 0 0 20px;
98
- }
99
-
100
- .cta {
101
- text-align: center;
102
- }
103
-
104
- .grid {
105
- margin-top: 100px;
106
-
107
- .card-wrapper {
108
- pointer-events: none;
109
- }
110
- }
59
+ @include Setup((
60
+ fontRegular: '/fonts/Inter-Regular.woff2',
61
+ fontBold: '/fonts/Inter-Bold.woff2'
62
+ ));
63
+
64
+ .container {
65
+ margin-top: 20px;
66
+ }
67
+
68
+ h1 {
69
+ margin: 100px 0 10px;
70
+ font-size: 48px;
71
+ text-align: center;
72
+
73
+ .a {
74
+ background: #B545ED;
75
+ background: linear-gradient(to right, #505FFF, #B545ED);
76
+ background-clip: text;
77
+ -webkit-background-clip: text;
78
+ -webkit-text-fill-color: transparent;
79
+ }
80
+
81
+ .s {
82
+ color: #FF3E00;
83
+ }
84
+
85
+ .r {
86
+ color: #61DAFB;
87
+ }
88
+ }
89
+
90
+ h2 {
91
+ color: #DDD;
92
+ font-family: Regular;
93
+ font-weight: 400;
94
+ text-align: center;
95
+ line-height: 1.5;
96
+ font-size: 24px;
97
+ margin: 0 0 20px;
98
+ }
99
+
100
+ .cta {
101
+ text-align: center;
102
+ }
103
+
104
+ .grid {
105
+ margin-top: 100px;
106
+
107
+ .card-wrapper {
108
+ pointer-events: none;
109
+ }
110
+ }
111
111
</style >
0 commit comments