create-next-app 14.2.7 → 14.2.9
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.js +1 -1
- package/dist/templates/app/js/README-template.md +4 -4
- package/dist/templates/app/js/app/fonts/GeistMonoVF.woff +0 -0
- package/dist/templates/app/js/app/fonts/GeistVF.woff +0 -0
- package/dist/templates/app/js/app/globals.css +15 -80
- package/dist/templates/app/js/app/layout.js +14 -3
- package/dist/templates/app/js/app/page.js +63 -63
- package/dist/templates/app/js/app/page.module.css +107 -172
- package/dist/templates/app/ts/README-template.md +4 -4
- package/dist/templates/app/ts/app/fonts/GeistMonoVF.woff +0 -0
- package/dist/templates/app/ts/app/fonts/GeistVF.woff +0 -0
- package/dist/templates/app/ts/app/globals.css +15 -80
- package/dist/templates/app/ts/app/layout.tsx +14 -3
- package/dist/templates/app/ts/app/page.module.css +107 -172
- package/dist/templates/app/ts/app/page.tsx +63 -63
- package/dist/templates/app/ts/eslintrc.json +1 -1
- package/dist/templates/app/ts/next-env.d.ts +1 -1
- package/dist/templates/app-tw/js/app/fonts/GeistMonoVF.woff +0 -0
- package/dist/templates/app-tw/js/app/fonts/GeistVF.woff +0 -0
- package/dist/templates/app-tw/js/app/globals.css +7 -13
- package/dist/templates/app-tw/js/app/layout.js +16 -3
- package/dist/templates/app-tw/js/app/page.js +70 -82
- package/dist/templates/app-tw/js/tailwind.config.js +3 -4
- package/dist/templates/app-tw/ts/README-template.md +4 -4
- package/dist/templates/app-tw/ts/app/fonts/GeistMonoVF.woff +0 -0
- package/dist/templates/app-tw/ts/app/fonts/GeistVF.woff +0 -0
- package/dist/templates/app-tw/ts/app/globals.css +7 -13
- package/dist/templates/app-tw/ts/app/layout.tsx +16 -3
- package/dist/templates/app-tw/ts/app/page.tsx +70 -82
- package/dist/templates/app-tw/ts/eslintrc.json +1 -1
- package/dist/templates/app-tw/ts/next-env.d.ts +1 -1
- package/dist/templates/app-tw/ts/tailwind.config.ts +3 -4
- package/dist/templates/default/js/pages/fonts/GeistMonoVF.woff +0 -0
- package/dist/templates/default/js/pages/fonts/GeistVF.woff +0 -0
- package/dist/templates/default/js/pages/index.js +76 -72
- package/dist/templates/default/js/styles/Home.module.css +107 -171
- package/dist/templates/default/js/styles/globals.css +15 -80
- package/dist/templates/default/ts/eslintrc.json +1 -1
- package/dist/templates/default/ts/next-env.d.ts +1 -1
- package/dist/templates/default/ts/pages/fonts/GeistMonoVF.woff +0 -0
- package/dist/templates/default/ts/pages/fonts/GeistVF.woff +0 -0
- package/dist/templates/default/ts/pages/index.tsx +76 -72
- package/dist/templates/default/ts/styles/Home.module.css +107 -171
- package/dist/templates/default/ts/styles/globals.css +15 -80
- package/dist/templates/default-tw/js/pages/_document.js +1 -1
- package/dist/templates/default-tw/js/pages/fonts/GeistMonoVF.woff +0 -0
- package/dist/templates/default-tw/js/pages/fonts/GeistVF.woff +0 -0
- package/dist/templates/default-tw/js/pages/index.js +81 -84
- package/dist/templates/default-tw/js/styles/globals.css +7 -13
- package/dist/templates/default-tw/js/tailwind.config.js +3 -4
- package/dist/templates/default-tw/ts/eslintrc.json +1 -1
- package/dist/templates/default-tw/ts/next-env.d.ts +1 -1
- package/dist/templates/default-tw/ts/pages/_document.tsx +1 -1
- package/dist/templates/default-tw/ts/pages/fonts/GeistMonoVF.woff +0 -0
- package/dist/templates/default-tw/ts/pages/fonts/GeistVF.woff +0 -0
- package/dist/templates/default-tw/ts/pages/index.tsx +81 -84
- package/dist/templates/default-tw/ts/styles/globals.css +7 -13
- package/dist/templates/default-tw/ts/tailwind.config.ts +3 -4
- package/package.json +1 -1
- package/dist/templates/app/js/public/next.svg +0 -1
- package/dist/templates/app/js/public/vercel.svg +0 -1
- package/dist/templates/app/ts/public/next.svg +0 -1
- package/dist/templates/app/ts/public/vercel.svg +0 -1
- package/dist/templates/app-tw/js/public/next.svg +0 -1
- package/dist/templates/app-tw/js/public/vercel.svg +0 -1
- package/dist/templates/app-tw/ts/public/next.svg +0 -1
- package/dist/templates/app-tw/ts/public/vercel.svg +0 -1
- package/dist/templates/default/js/public/next.svg +0 -1
- package/dist/templates/default/js/public/vercel.svg +0 -1
- package/dist/templates/default/ts/public/next.svg +0 -1
- package/dist/templates/default/ts/public/vercel.svg +0 -1
- package/dist/templates/default-tw/js/public/next.svg +0 -1
- package/dist/templates/default-tw/js/public/vercel.svg +0 -1
- package/dist/templates/default-tw/ts/public/next.svg +0 -1
- package/dist/templates/default-tw/ts/public/vercel.svg +0 -1
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
import Head from "next/head";
|
|
2
2
|
import Image from "next/image";
|
|
3
|
-
import
|
|
3
|
+
import localFont from "next/font/local";
|
|
4
4
|
import styles from "@/styles/Home.module.css";
|
|
5
5
|
|
|
6
|
-
const
|
|
6
|
+
const geistSans = localFont({
|
|
7
|
+
src: "./fonts/GeistVF.woff",
|
|
8
|
+
variable: "--font-geist-sans",
|
|
9
|
+
weight: "100 900",
|
|
10
|
+
});
|
|
11
|
+
const geistMono = localFont({
|
|
12
|
+
src: "./fonts/GeistMonoVF.woff",
|
|
13
|
+
variable: "--font-geist-mono",
|
|
14
|
+
weight: "100 900",
|
|
15
|
+
});
|
|
7
16
|
|
|
8
17
|
export default function Home() {
|
|
9
18
|
return (
|
|
@@ -14,101 +23,96 @@ export default function Home() {
|
|
|
14
23
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
15
24
|
<link rel="icon" href="/favicon.ico" />
|
|
16
25
|
</Head>
|
|
17
|
-
<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
26
|
+
<div
|
|
27
|
+
className={`${styles.page} ${geistSans.variable} ${geistMono.variable}`}
|
|
28
|
+
>
|
|
29
|
+
<main className={styles.main}>
|
|
30
|
+
<Image
|
|
31
|
+
className={styles.logo}
|
|
32
|
+
src="https://nextjs.org/icons/next.svg"
|
|
33
|
+
alt="Next.js logo"
|
|
34
|
+
width={180}
|
|
35
|
+
height={38}
|
|
36
|
+
priority
|
|
37
|
+
/>
|
|
38
|
+
<ol>
|
|
39
|
+
<li>
|
|
40
|
+
Get started by editing <code>pages/index.js</code>.
|
|
41
|
+
</li>
|
|
42
|
+
<li>Save and see your changes instantly.</li>
|
|
43
|
+
</ol>
|
|
44
|
+
|
|
45
|
+
<div className={styles.ctas}>
|
|
24
46
|
<a
|
|
25
|
-
|
|
47
|
+
className={styles.primary}
|
|
48
|
+
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
|
|
26
49
|
target="_blank"
|
|
27
50
|
rel="noopener noreferrer"
|
|
28
51
|
>
|
|
29
|
-
By{" "}
|
|
30
52
|
<Image
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
width={
|
|
35
|
-
height={
|
|
36
|
-
priority
|
|
53
|
+
className={styles.logo}
|
|
54
|
+
src="https://nextjs.org/icons/vercel.svg"
|
|
55
|
+
alt="Vercel logomark"
|
|
56
|
+
width={20}
|
|
57
|
+
height={20}
|
|
37
58
|
/>
|
|
59
|
+
Deploy now
|
|
60
|
+
</a>
|
|
61
|
+
<a
|
|
62
|
+
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
|
|
63
|
+
target="_blank"
|
|
64
|
+
rel="noopener noreferrer"
|
|
65
|
+
className={styles.secondary}
|
|
66
|
+
>
|
|
67
|
+
Read our docs
|
|
38
68
|
</a>
|
|
39
69
|
</div>
|
|
40
|
-
</
|
|
41
|
-
|
|
42
|
-
<div className={styles.center}>
|
|
43
|
-
<Image
|
|
44
|
-
className={styles.logo}
|
|
45
|
-
src="/next.svg"
|
|
46
|
-
alt="Next.js Logo"
|
|
47
|
-
width={180}
|
|
48
|
-
height={37}
|
|
49
|
-
priority
|
|
50
|
-
/>
|
|
51
|
-
</div>
|
|
52
|
-
|
|
53
|
-
<div className={styles.grid}>
|
|
54
|
-
<a
|
|
55
|
-
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
|
|
56
|
-
className={styles.card}
|
|
57
|
-
target="_blank"
|
|
58
|
-
rel="noopener noreferrer"
|
|
59
|
-
>
|
|
60
|
-
<h2>
|
|
61
|
-
Docs <span>-></span>
|
|
62
|
-
</h2>
|
|
63
|
-
<p>
|
|
64
|
-
Find in-depth information about Next.js features and API.
|
|
65
|
-
</p>
|
|
66
|
-
</a>
|
|
67
|
-
|
|
70
|
+
</main>
|
|
71
|
+
<footer className={styles.footer}>
|
|
68
72
|
<a
|
|
69
73
|
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
|
|
70
|
-
className={styles.card}
|
|
71
74
|
target="_blank"
|
|
72
75
|
rel="noopener noreferrer"
|
|
73
76
|
>
|
|
74
|
-
<
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
77
|
+
<Image
|
|
78
|
+
aria-hidden
|
|
79
|
+
src="https://nextjs.org/icons/file.svg"
|
|
80
|
+
alt="File icon"
|
|
81
|
+
width={16}
|
|
82
|
+
height={16}
|
|
83
|
+
/>
|
|
84
|
+
Learn
|
|
80
85
|
</a>
|
|
81
|
-
|
|
82
86
|
<a
|
|
83
87
|
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
|
|
84
|
-
className={styles.card}
|
|
85
88
|
target="_blank"
|
|
86
89
|
rel="noopener noreferrer"
|
|
87
90
|
>
|
|
88
|
-
<
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
91
|
+
<Image
|
|
92
|
+
aria-hidden
|
|
93
|
+
src="https://nextjs.org/icons/window.svg"
|
|
94
|
+
alt="Window icon"
|
|
95
|
+
width={16}
|
|
96
|
+
height={16}
|
|
97
|
+
/>
|
|
98
|
+
Examples
|
|
94
99
|
</a>
|
|
95
|
-
|
|
96
100
|
<a
|
|
97
|
-
href="https://
|
|
98
|
-
className={styles.card}
|
|
101
|
+
href="https://nextjs.org?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
|
|
99
102
|
target="_blank"
|
|
100
103
|
rel="noopener noreferrer"
|
|
101
104
|
>
|
|
102
|
-
<
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
105
|
+
<Image
|
|
106
|
+
aria-hidden
|
|
107
|
+
src="https://nextjs.org/icons/globe.svg"
|
|
108
|
+
alt="Globe icon"
|
|
109
|
+
width={16}
|
|
110
|
+
height={16}
|
|
111
|
+
/>
|
|
112
|
+
Go to nextjs.org →
|
|
109
113
|
</a>
|
|
110
|
-
</
|
|
111
|
-
</
|
|
114
|
+
</footer>
|
|
115
|
+
</div>
|
|
112
116
|
</>
|
|
113
117
|
);
|
|
114
118
|
}
|
|
@@ -1,229 +1,165 @@
|
|
|
1
|
-
.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
.page {
|
|
2
|
+
--gray-rgb: 0, 0, 0;
|
|
3
|
+
--gray-alpha-200: rgba(var(--gray-rgb), 0.08);
|
|
4
|
+
--gray-alpha-100: rgba(var(--gray-rgb), 0.05);
|
|
5
|
+
|
|
6
|
+
--button-primary-hover: #383838;
|
|
7
|
+
--button-secondary-hover: #f2f2f2;
|
|
8
|
+
|
|
9
|
+
display: grid;
|
|
10
|
+
grid-template-rows: 20px 1fr 20px;
|
|
5
11
|
align-items: center;
|
|
6
|
-
|
|
7
|
-
min-height:
|
|
12
|
+
justify-items: center;
|
|
13
|
+
min-height: 100svh;
|
|
14
|
+
padding: 80px;
|
|
15
|
+
gap: 64px;
|
|
16
|
+
font-family: var(--font-geist-sans);
|
|
8
17
|
}
|
|
9
18
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
+
@media (prefers-color-scheme: dark) {
|
|
20
|
+
.page {
|
|
21
|
+
--gray-rgb: 255, 255, 255;
|
|
22
|
+
--gray-alpha-200: rgba(var(--gray-rgb), 0.145);
|
|
23
|
+
--gray-alpha-100: rgba(var(--gray-rgb), 0.06);
|
|
24
|
+
|
|
25
|
+
--button-primary-hover: #ccc;
|
|
26
|
+
--button-secondary-hover: #1a1a1a;
|
|
27
|
+
}
|
|
19
28
|
}
|
|
20
29
|
|
|
21
|
-
.
|
|
30
|
+
.main {
|
|
22
31
|
display: flex;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
32
|
+
flex-direction: column;
|
|
33
|
+
gap: 32px;
|
|
34
|
+
grid-row-start: 2;
|
|
26
35
|
}
|
|
27
36
|
|
|
28
|
-
.
|
|
29
|
-
|
|
37
|
+
.main ol {
|
|
38
|
+
font-family: var(--font-geist-mono);
|
|
39
|
+
padding-left: 0;
|
|
30
40
|
margin: 0;
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
41
|
+
font-size: 14px;
|
|
42
|
+
line-height: 24px;
|
|
43
|
+
letter-spacing: -0.01em;
|
|
44
|
+
list-style-position: inside;
|
|
35
45
|
}
|
|
36
46
|
|
|
37
|
-
.
|
|
38
|
-
|
|
39
|
-
font-family: var(--font-mono);
|
|
47
|
+
.main li:not(:last-of-type) {
|
|
48
|
+
margin-bottom: 8px;
|
|
40
49
|
}
|
|
41
50
|
|
|
42
|
-
.
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
51
|
+
.main code {
|
|
52
|
+
font-family: inherit;
|
|
53
|
+
background: var(--gray-alpha-100);
|
|
54
|
+
padding: 2px 4px;
|
|
55
|
+
border-radius: 4px;
|
|
56
|
+
font-weight: 600;
|
|
47
57
|
}
|
|
48
58
|
|
|
49
|
-
.
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
59
|
+
.ctas {
|
|
60
|
+
display: flex;
|
|
61
|
+
gap: 16px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.ctas a {
|
|
65
|
+
appearance: none;
|
|
66
|
+
border-radius: 128px;
|
|
67
|
+
height: 48px;
|
|
68
|
+
padding: 0 20px;
|
|
69
|
+
border: none;
|
|
70
|
+
border: 1px solid transparent;
|
|
71
|
+
transition: background 0.2s, color 0.2s, border-color 0.2s;
|
|
72
|
+
cursor: pointer;
|
|
73
|
+
display: flex;
|
|
74
|
+
align-items: center;
|
|
75
|
+
justify-content: center;
|
|
76
|
+
font-size: 16px;
|
|
77
|
+
line-height: 20px;
|
|
78
|
+
font-weight: 500;
|
|
55
79
|
}
|
|
56
80
|
|
|
57
|
-
.
|
|
58
|
-
|
|
59
|
-
|
|
81
|
+
a.primary {
|
|
82
|
+
background: var(--foreground);
|
|
83
|
+
color: var(--background);
|
|
84
|
+
gap: 8px;
|
|
60
85
|
}
|
|
61
86
|
|
|
62
|
-
.
|
|
63
|
-
|
|
64
|
-
|
|
87
|
+
a.secondary {
|
|
88
|
+
border-color: var(--gray-alpha-200);
|
|
89
|
+
min-width: 180px;
|
|
65
90
|
}
|
|
66
91
|
|
|
67
|
-
.
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
line-height: 1.5;
|
|
72
|
-
max-width: 30ch;
|
|
92
|
+
.footer {
|
|
93
|
+
grid-row-start: 3;
|
|
94
|
+
display: flex;
|
|
95
|
+
gap: 24px;
|
|
73
96
|
}
|
|
74
97
|
|
|
75
|
-
.
|
|
98
|
+
.footer a {
|
|
76
99
|
display: flex;
|
|
77
|
-
justify-content: center;
|
|
78
100
|
align-items: center;
|
|
79
|
-
|
|
80
|
-
padding: 4rem 0;
|
|
101
|
+
gap: 8px;
|
|
81
102
|
}
|
|
82
103
|
|
|
83
|
-
.
|
|
84
|
-
|
|
85
|
-
border-radius: 50%;
|
|
86
|
-
width: 480px;
|
|
87
|
-
height: 360px;
|
|
88
|
-
margin-left: -400px;
|
|
104
|
+
.footer img {
|
|
105
|
+
flex-shrink: 0;
|
|
89
106
|
}
|
|
90
107
|
|
|
91
|
-
.center::after {
|
|
92
|
-
background: var(--primary-glow);
|
|
93
|
-
width: 240px;
|
|
94
|
-
height: 180px;
|
|
95
|
-
z-index: -1;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.center::before,
|
|
99
|
-
.center::after {
|
|
100
|
-
content: "";
|
|
101
|
-
left: 50%;
|
|
102
|
-
position: absolute;
|
|
103
|
-
filter: blur(45px);
|
|
104
|
-
transform: translateZ(0);
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.logo {
|
|
108
|
-
position: relative;
|
|
109
|
-
}
|
|
110
108
|
/* Enable hover only on non-touch devices */
|
|
111
109
|
@media (hover: hover) and (pointer: fine) {
|
|
112
|
-
.
|
|
113
|
-
background:
|
|
114
|
-
border:
|
|
110
|
+
a.primary:hover {
|
|
111
|
+
background: var(--button-primary-hover);
|
|
112
|
+
border-color: transparent;
|
|
115
113
|
}
|
|
116
114
|
|
|
117
|
-
.
|
|
118
|
-
|
|
115
|
+
a.secondary:hover {
|
|
116
|
+
background: var(--button-secondary-hover);
|
|
117
|
+
border-color: transparent;
|
|
119
118
|
}
|
|
120
|
-
}
|
|
121
119
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
120
|
+
.footer a:hover {
|
|
121
|
+
text-decoration: underline;
|
|
122
|
+
text-underline-offset: 4px;
|
|
125
123
|
}
|
|
126
124
|
}
|
|
127
125
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
padding:
|
|
126
|
+
@media (max-width: 600px) {
|
|
127
|
+
.page {
|
|
128
|
+
padding: 32px;
|
|
129
|
+
padding-bottom: 80px;
|
|
132
130
|
}
|
|
133
131
|
|
|
134
|
-
.
|
|
135
|
-
|
|
136
|
-
margin-bottom: 120px;
|
|
137
|
-
max-width: 320px;
|
|
138
|
-
text-align: center;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.card {
|
|
142
|
-
padding: 1rem 2.5rem;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.card h2 {
|
|
146
|
-
margin-bottom: 0.5rem;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.center {
|
|
150
|
-
padding: 8rem 0 6rem;
|
|
132
|
+
.main {
|
|
133
|
+
align-items: center;
|
|
151
134
|
}
|
|
152
135
|
|
|
153
|
-
.
|
|
154
|
-
|
|
155
|
-
height: 300px;
|
|
136
|
+
.main ol {
|
|
137
|
+
text-align: center;
|
|
156
138
|
}
|
|
157
139
|
|
|
158
|
-
.
|
|
159
|
-
|
|
140
|
+
.ctas {
|
|
141
|
+
flex-direction: column;
|
|
160
142
|
}
|
|
161
143
|
|
|
162
|
-
.
|
|
163
|
-
|
|
144
|
+
.ctas a {
|
|
145
|
+
font-size: 14px;
|
|
146
|
+
height: 40px;
|
|
147
|
+
padding: 0 16px;
|
|
164
148
|
}
|
|
165
149
|
|
|
166
|
-
.
|
|
167
|
-
|
|
168
|
-
display: flex;
|
|
169
|
-
justify-content: center;
|
|
170
|
-
position: fixed;
|
|
171
|
-
width: 100%;
|
|
150
|
+
a.secondary {
|
|
151
|
+
min-width: auto;
|
|
172
152
|
}
|
|
173
153
|
|
|
174
|
-
.
|
|
154
|
+
.footer {
|
|
155
|
+
flex-wrap: wrap;
|
|
175
156
|
align-items: center;
|
|
176
|
-
|
|
177
|
-
padding: 2rem 1rem 1.4rem;
|
|
178
|
-
border-radius: 0;
|
|
179
|
-
border: none;
|
|
180
|
-
border-bottom: 1px solid rgba(var(--callout-border-rgb), 0.25);
|
|
181
|
-
background: linear-gradient(
|
|
182
|
-
to bottom,
|
|
183
|
-
rgba(var(--background-start-rgb), 1),
|
|
184
|
-
rgba(var(--callout-rgb), 0.5)
|
|
185
|
-
);
|
|
186
|
-
background-clip: padding-box;
|
|
187
|
-
backdrop-filter: blur(24px);
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.description div {
|
|
191
|
-
align-items: flex-end;
|
|
192
|
-
pointer-events: none;
|
|
193
|
-
inset: auto 0 0;
|
|
194
|
-
padding: 2rem;
|
|
195
|
-
height: 200px;
|
|
196
|
-
background: linear-gradient(
|
|
197
|
-
to bottom,
|
|
198
|
-
transparent 0%,
|
|
199
|
-
rgb(var(--background-end-rgb)) 40%
|
|
200
|
-
);
|
|
201
|
-
z-index: 1;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
/* Tablet and Smaller Desktop */
|
|
206
|
-
@media (min-width: 701px) and (max-width: 1120px) {
|
|
207
|
-
.grid {
|
|
208
|
-
grid-template-columns: repeat(2, 50%);
|
|
157
|
+
justify-content: center;
|
|
209
158
|
}
|
|
210
159
|
}
|
|
211
160
|
|
|
212
161
|
@media (prefers-color-scheme: dark) {
|
|
213
|
-
.vercelLogo {
|
|
214
|
-
filter: invert(1);
|
|
215
|
-
}
|
|
216
|
-
|
|
217
162
|
.logo {
|
|
218
|
-
filter: invert(
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
@keyframes rotate {
|
|
223
|
-
from {
|
|
224
|
-
transform: rotate(360deg);
|
|
225
|
-
}
|
|
226
|
-
to {
|
|
227
|
-
transform: rotate(0deg);
|
|
163
|
+
filter: invert();
|
|
228
164
|
}
|
|
229
165
|
}
|
|
@@ -1,84 +1,15 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--
|
|
3
|
-
--
|
|
4
|
-
--font-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono",
|
|
5
|
-
"Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro",
|
|
6
|
-
"Fira Mono", "Droid Sans Mono", "Courier New", monospace;
|
|
7
|
-
|
|
8
|
-
--foreground-rgb: 0, 0, 0;
|
|
9
|
-
--background-start-rgb: 214, 219, 220;
|
|
10
|
-
--background-end-rgb: 255, 255, 255;
|
|
11
|
-
|
|
12
|
-
--primary-glow: conic-gradient(
|
|
13
|
-
from 180deg at 50% 50%,
|
|
14
|
-
#16abff33 0deg,
|
|
15
|
-
#0885ff33 55deg,
|
|
16
|
-
#54d6ff33 120deg,
|
|
17
|
-
#0071ff33 160deg,
|
|
18
|
-
transparent 360deg
|
|
19
|
-
);
|
|
20
|
-
--secondary-glow: radial-gradient(
|
|
21
|
-
rgba(255, 255, 255, 1),
|
|
22
|
-
rgba(255, 255, 255, 0)
|
|
23
|
-
);
|
|
24
|
-
|
|
25
|
-
--tile-start-rgb: 239, 245, 249;
|
|
26
|
-
--tile-end-rgb: 228, 232, 233;
|
|
27
|
-
--tile-border: conic-gradient(
|
|
28
|
-
#00000080,
|
|
29
|
-
#00000040,
|
|
30
|
-
#00000030,
|
|
31
|
-
#00000020,
|
|
32
|
-
#00000010,
|
|
33
|
-
#00000010,
|
|
34
|
-
#00000080
|
|
35
|
-
);
|
|
36
|
-
|
|
37
|
-
--callout-rgb: 238, 240, 241;
|
|
38
|
-
--callout-border-rgb: 172, 175, 176;
|
|
39
|
-
--card-rgb: 180, 185, 188;
|
|
40
|
-
--card-border-rgb: 131, 134, 135;
|
|
2
|
+
--background: #ffffff;
|
|
3
|
+
--foreground: #171717;
|
|
41
4
|
}
|
|
42
5
|
|
|
43
6
|
@media (prefers-color-scheme: dark) {
|
|
44
7
|
:root {
|
|
45
|
-
--
|
|
46
|
-
--
|
|
47
|
-
--background-end-rgb: 0, 0, 0;
|
|
48
|
-
|
|
49
|
-
--primary-glow: radial-gradient(rgba(1, 65, 255, 0.4), rgba(1, 65, 255, 0));
|
|
50
|
-
--secondary-glow: linear-gradient(
|
|
51
|
-
to bottom right,
|
|
52
|
-
rgba(1, 65, 255, 0),
|
|
53
|
-
rgba(1, 65, 255, 0),
|
|
54
|
-
rgba(1, 65, 255, 0.3)
|
|
55
|
-
);
|
|
56
|
-
|
|
57
|
-
--tile-start-rgb: 2, 13, 46;
|
|
58
|
-
--tile-end-rgb: 2, 5, 19;
|
|
59
|
-
--tile-border: conic-gradient(
|
|
60
|
-
#ffffff80,
|
|
61
|
-
#ffffff40,
|
|
62
|
-
#ffffff30,
|
|
63
|
-
#ffffff20,
|
|
64
|
-
#ffffff10,
|
|
65
|
-
#ffffff10,
|
|
66
|
-
#ffffff80
|
|
67
|
-
);
|
|
68
|
-
|
|
69
|
-
--callout-rgb: 20, 20, 20;
|
|
70
|
-
--callout-border-rgb: 108, 108, 108;
|
|
71
|
-
--card-rgb: 100, 100, 100;
|
|
72
|
-
--card-border-rgb: 200, 200, 200;
|
|
8
|
+
--background: #0a0a0a;
|
|
9
|
+
--foreground: #ededed;
|
|
73
10
|
}
|
|
74
11
|
}
|
|
75
12
|
|
|
76
|
-
* {
|
|
77
|
-
box-sizing: border-box;
|
|
78
|
-
padding: 0;
|
|
79
|
-
margin: 0;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
13
|
html,
|
|
83
14
|
body {
|
|
84
15
|
max-width: 100vw;
|
|
@@ -86,13 +17,17 @@ body {
|
|
|
86
17
|
}
|
|
87
18
|
|
|
88
19
|
body {
|
|
89
|
-
color:
|
|
90
|
-
background:
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
20
|
+
color: var(--foreground);
|
|
21
|
+
background: var(--background);
|
|
22
|
+
font-family: Arial, Helvetica, sans-serif;
|
|
23
|
+
-webkit-font-smoothing: antialiased;
|
|
24
|
+
-moz-osx-font-smoothing: grayscale;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
* {
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
padding: 0;
|
|
30
|
+
margin: 0;
|
|
96
31
|
}
|
|
97
32
|
|
|
98
33
|
a {
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
/// <reference types="next/image-types/global" />
|
|
3
3
|
|
|
4
4
|
// NOTE: This file should not be edited
|
|
5
|
-
// see https://nextjs.org/docs/
|
|
5
|
+
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
|
|
Binary file
|
|
Binary file
|