Skip to content

Commit 62b57e6

Browse files
committed
Added new pages "popa.astro" and "popb.astro" with respective content
1 parent 1bdf138 commit 62b57e6

10 files changed

Lines changed: 1393 additions & 830 deletions

File tree

package-lock.json

Lines changed: 591 additions & 602 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@astrojs/starlight": "^0.38.1",
1414
"@expressive-code/plugin-collapsible-sections": "^0.41.7",
1515
"@expressive-code/plugin-line-numbers": "^0.41.7",
16-
"@inox-tools/portal-gun": "^1.4.1",
16+
"@inox-tools/portal-gun": "^2.0.0",
1717
"@playwright/test": "^1.58.2",
1818
"@types/node": "^25.5.0",
1919
"@vtbag/cam-shaft": "^1.0.6",
@@ -22,8 +22,9 @@
2222
"@vtbag/turn-signal": "^1.3.1",
2323
"@vtbag/utensil-drawer": "^1.2.16",
2424
"astro": "^6.0.4",
25-
"astro-d2": "^0.9.0",
25+
"astro-d2": "^0.10.0",
2626
"astro-vtbot": "^2.1.11",
27+
"astro-webrings": "^0.1.4",
2728
"baseline-status": "^1.1.1",
2829
"node-html-parser": "^7.1.0",
2930
"postcss-active-view-transition-type": "^0.0.7",
@@ -35,8 +36,5 @@
3536
"starlight-image-zoom": "^0.14.1",
3637
"tsx": "^4.21.0",
3738
"typescript": "^5.9.3"
38-
},
39-
"dependencies": {
40-
"astro-webrings": "^0.1.3"
4139
}
4240
}

src/pages/tests/_pop-layout.astro

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width" />
6+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
7+
<meta name="generator" content={Astro.generator} />
8+
<title>Tech Demo</title>
9+
<style>
10+
@view-transition {
11+
navigation: auto;
12+
}
13+
</style>
14+
</head>
15+
<body id="body">
16+
<slot />
17+
</body>
18+
</html>
19+
20+
<style>
21+
:global(html) {
22+
color-scheme: light dark;
23+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
24+
Cantarell, 'Helvetica Neue', sans-serif;
25+
scroll-behavior: smooth;
26+
}
27+
28+
:global(html, body) {
29+
margin: 0;
30+
padding: 0;
31+
width: 100%;
32+
height: 100%;
33+
}
34+
35+
:global(body) {
36+
background: light-dark(#ffffff, #0a0a0a);
37+
color: light-dark(#111827, #f5f5f5);
38+
line-height: 1.6;
39+
}
40+
41+
:global(a) {
42+
color: inherit;
43+
text-decoration: none;
44+
}
45+
46+
:global(button) {
47+
font-family: inherit;
48+
cursor: pointer;
49+
border: none;
50+
background: none;
51+
}
52+
</style>

src/pages/tests/l.astro

Lines changed: 0 additions & 134 deletions
This file was deleted.

0 commit comments

Comments
 (0)