create-zudo-sg 0.1.1 → 0.1.2
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/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ All notable changes to `create-zudo-sg` are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on Keep a Changelog.
|
|
6
6
|
|
|
7
|
+
## [0.1.2] - 2026-09-20
|
|
8
|
+
|
|
9
|
+
Gives fresh starter projects a styled homepage and usable default navigation.
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Style the host-owned homepage with token-based typography, spacing, and
|
|
14
|
+
clearly visible links to Components and Design Tokens after Tailwind preflight.
|
|
15
|
+
- Verify the packed starter's homepage markup and generated utility CSS.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Update the starter engine range to `@takazudo/zudo-sg ^0.2.2`, which supplies
|
|
20
|
+
default header navigation and search controls for minimally configured hosts.
|
|
21
|
+
|
|
7
22
|
## [0.1.1] - 2026-09-20
|
|
8
23
|
|
|
9
24
|
Hardens fresh starter projects and aligns them with `@takazudo/zudo-sg 0.2.1`.
|
package/package.json
CHANGED
|
@@ -12,11 +12,28 @@ export default function IndexPage(): JSX.Element {
|
|
|
12
12
|
<html lang="en">
|
|
13
13
|
<head>
|
|
14
14
|
<meta charSet="utf-8" />
|
|
15
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
15
16
|
<title>Styleguide starter</title>
|
|
16
17
|
</head>
|
|
17
|
-
<body>
|
|
18
|
-
<
|
|
19
|
-
|
|
18
|
+
<body class="min-h-screen bg-bg font-sans text-base leading-normal text-fg">
|
|
19
|
+
<main class="mx-auto flex max-w-[48rem] flex-col gap-vsp-lg px-hsp-lg py-vsp-2xl">
|
|
20
|
+
<h1 data-host-index class="text-2xl font-bold leading-tight">Styleguide starter</h1>
|
|
21
|
+
<p class="text-muted">Explore your components, their stories, and the design tokens that bring them together.</p>
|
|
22
|
+
<nav aria-label="Styleguide" class="flex flex-wrap gap-hsp-md">
|
|
23
|
+
<a
|
|
24
|
+
href="/components"
|
|
25
|
+
class="inline-flex px-hsp-sm py-vsp-sm font-semibold text-accent underline hover:text-accent-hover focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-focus"
|
|
26
|
+
>
|
|
27
|
+
Components
|
|
28
|
+
</a>
|
|
29
|
+
<a
|
|
30
|
+
href="/tokens"
|
|
31
|
+
class="inline-flex px-hsp-sm py-vsp-sm font-semibold text-accent underline hover:text-accent-hover focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-focus"
|
|
32
|
+
>
|
|
33
|
+
Design Tokens
|
|
34
|
+
</a>
|
|
35
|
+
</nav>
|
|
36
|
+
</main>
|
|
20
37
|
</body>
|
|
21
38
|
</html>
|
|
22
39
|
);
|