Skip to content

Commit 94e6b52

Browse files
committed
0.0.5
1 parent df080ff commit 94e6b52

File tree

4 files changed

+22
-19
lines changed

4 files changed

+22
-19
lines changed

components/MarketingServerMono.module.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,10 @@
4646
}
4747

4848
.footer {
49+
margin: 88px auto 128px auto;
4950
display: block;
5051
color: var(--theme-text);
51-
opacity: 0.1;
5252
transition: 2000ms ease opacity;
53-
margin-top: 256px;
5453

5554
&:visited {
5655
color: var(--theme-text);
@@ -98,3 +97,8 @@
9897
min-width: 10%;
9998
width: 100%;
10099
}
100+
101+
.video {
102+
display: block;
103+
width: 100%;
104+
}

components/MarketingServerMono.tsx

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ import IntDev from '@system/svg/IntDev';
88
import { H3, P, Title, SubText } from '@system/typography';
99

1010
export default function MarketingServerMono(props) {
11+
const videoUrl = 'https://intdev-global.s3.us-west-2.amazonaws.com/public/internet-dev/2316285a-4e2e-4f39-b578-1b0c9cdb7e93.mp4';
12+
1113
return (
1214
<>
13-
1415
<div className={styles.root}>
1516
<div className={styles.row}>
1617
<div className={styles.left}>
@@ -43,8 +44,8 @@ export default function MarketingServerMono(props) {
4344
<div className={styles.row}>
4445
<div className={styles.content}>
4546
<Title>Downloads</Title>
46-
<ActionItem style={{ marginTop: `1rem`}}icon={`⊹`} href="https://github.com/internet-development/www-server-mono/blob/main/fonts" target="_blank">
47-
[0.0.4] [9-5-2024] Latest release
47+
<ActionItem style={{ marginTop: `1rem` }} icon={`⊹`} href="https://github.com/internet-development/www-server-mono/blob/main/fonts" target="_blank">
48+
[0.0.5] [12-1-2024] Latest release
4849
</ActionItem>
4950
<ActionItem icon={`⭢`} href="https://github.com/internet-development/www-server-mono" target="_blank">
5051
View repository on GitHub
@@ -55,8 +56,8 @@ export default function MarketingServerMono(props) {
5556
<div className={styles.row}>
5657
<div className={styles.content}>
5758
<P>
58-
This single-weight font was released in 2024 by the Internet Development Studio Company of Seattle, Washington. Created by designers Tim Vanhille and Matthieu Salvaggio, with supplemental
59-
direction from Jimmy Lee and the Internet Development Studio Company community.
59+
This single-weight font was released in 2024 by the Internet Development Studio Company of Seattle, Washington. Created by designers Tim Vanhille and Matthieu
60+
Salvaggio, with supplemental direction from Jimmy Lee and the Internet Development Studio Company community.
6061
</P>
6162
</div>
6263
</div>
@@ -158,11 +159,11 @@ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m n
158159
<Title style={{ marginTop: `2rem` }}>Math (WIP)</Title>
159160
<P style={{ marginTop: `1rem`, lineHeight: `1.6rem` }}>
160161
{`
161-
+ - =
162+
+ - = %
162163
`}
163164
</P>
164165
<Title style={{ marginTop: `2rem` }}>ASCII</Title>
165-
<P style={{ marginTop: `1rem`, whiteSpace: 'pre-wrap', lineHeight: 1, fontSize: 12}}>
166+
<P style={{ marginTop: `1rem`, whiteSpace: 'pre-wrap', lineHeight: 1, fontSize: 12 }}>
166167
{`
167168
▄████████ ▄███████▄ ███ █▄
168169
███ ███ ███ ███ ███ ███
@@ -179,14 +180,12 @@ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m n
179180

180181
<hr className={styles.divider} />
181182

182-
183+
<a className={styles.footer} href="https://internet.dev">
184+
<video className={styles.video} src={videoUrl} autoPlay muted loop playsInline preload="auto">
185+
Your browser does not support the video tag.
186+
</video>
187+
</a>
183188
</div>
184-
185-
186-
<a className={styles.footer} href="https://internet.dev">
187-
<IntDev width="100%" />
188-
189-
</a>
190189
</>
191190
);
192191
}

global.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
@font-face {
22
font-family: 'ServerMono-Regular';
3-
src: url('https://intdev-global.s3.us-west-2.amazonaws.com/public/internet-dev/d07f86ea-cba9-4ff3-9f74-d92968910081.woff') format('woff');
3+
src: url('https://intdev-global.s3.us-west-2.amazonaws.com/public/internet-dev/a1f0776e-efce-4d45-a6f2-538ccb710599.woff') format('woff');
44
}
55

66
@font-face {
77
font-family: 'ServerMono-Regular-Italic';
8-
src: url('https://intdev-global.s3.us-west-2.amazonaws.com/public/internet-dev/53327590-0e9e-4f51-b6da-f6e28bcbbc67.woff') format('woff');
8+
src: url('https://intdev-global.s3.us-west-2.amazonaws.com/public/internet-dev/60f7d4a4-201c-4df8-b719-bac4d7d8be5a.woff') format('woff');
99
}
1010

1111
html,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"node": ">=18"
66
},
77
"license": "MIT",
8-
"version": "0.0.4",
8+
"version": "0.0.5",
99
"scripts": {
1010
"dev": "next -p 10000",
1111
"build": "next build",

0 commit comments

Comments
 (0)