Skip to content

Commit c6f06d9

Browse files
authored
feat: brand page (#120)
* refactor: move static assets out of `routes/` * feat: add dark and light svgs for widgets * feat: assets page * feat: widget grid * fix: subtitle margin * fix: lowercase widget names * feat: cleanup and add monochrome logos * fix: tweaks
1 parent a826499 commit c6f06d9

File tree

112 files changed

+1673
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+1673
-21
lines changed

.marko-run/routes.d.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ declare module "@marko/run" {
1111
interface AppData extends Run.DefineApp<{
1212
routes: {
1313
"/": { verb: "get"; };
14+
"/brand": { verb: "get"; };
1415
"/docs": { verb: "get"; };
1516
"/docs/explanation/controllable-components": { verb: "get"; meta: typeof import("../src/routes/docs/_compiled-docs/explanation/controllable-components+meta.json"); };
1617
"/docs/explanation/fine-grained-bundling": { verb: "get"; meta: typeof import("../src/routes/docs/_compiled-docs/explanation/fine-grained-bundling+meta.json"); };
@@ -96,6 +97,17 @@ declare module "../src/routes/_home/+page.marko" {
9697
}
9798
}
9899

100+
declare module "../src/routes/brand/+page.marko" {
101+
namespace MarkoRun {
102+
export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform };
103+
export type Route = Run.Routes["/brand"];
104+
export type Context = Run.MultiRouteContext<Route> & Marko.Global;
105+
export type Handler = Run.HandlerLike<Route>;
106+
/** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */
107+
export const route: Run.HandlerTypeFn<Route>;
108+
}
109+
}
110+
99111
declare module "../src/routes/docs/_compiled-docs/explanation/controllable-components+page.marko" {
100112
namespace MarkoRun {
101113
export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform };
@@ -485,7 +497,7 @@ declare module "../src/routes/+layout.marko" {
485497
export interface Input extends Run.LayoutInput<typeof import("../src/routes/+layout.marko")> {}
486498
namespace MarkoRun {
487499
export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform };
488-
export type Route = Run.Routes["/" | "/docs/explanation/controllable-components" | "/docs/explanation/fine-grained-bundling" | "/docs/explanation/immutable-state" | "/docs/explanation/let-vs-const" | "/docs/explanation/nested-reactivity" | "/docs/explanation/optimizing-performance" | "/docs/explanation/separation-of-concerns" | "/docs/explanation/serializable-state" | "/docs/explanation/streaming" | "/docs/explanation/targeted-compilation" | "/docs/guide/duplicate-form-submissions" | "/docs/guide/library-integration" | "/docs/guide/low-level-apis" | "/docs/guide/marko-5-interop" | "/docs/guide/publishing-components" | "/docs/guide/styling" | "/docs/introduction/getting-started" | "/docs/introduction/installation" | "/docs/introduction/integrations" | "/docs/introduction/welcome-to-marko" | "/docs/introduction/why-marko" | "/docs/marko-run/file-based-routing" | "/docs/marko-run/getting-started" | "/docs/marko-run/typescript" | "/docs/reference/concise-syntax" | "/docs/reference/core-tag" | "/docs/reference/custom-tag" | "/docs/reference/language" | "/docs/reference/native-tag" | "/docs/reference/reactivity" | "/docs/reference/template" | "/docs/reference/typescript" | "/docs/tutorial/components-and-reactivity" | "/docs/tutorial/fundamentals" | "/playground"];
500+
export type Route = Run.Routes["/" | "/brand" | "/docs/explanation/controllable-components" | "/docs/explanation/fine-grained-bundling" | "/docs/explanation/immutable-state" | "/docs/explanation/let-vs-const" | "/docs/explanation/nested-reactivity" | "/docs/explanation/optimizing-performance" | "/docs/explanation/separation-of-concerns" | "/docs/explanation/serializable-state" | "/docs/explanation/streaming" | "/docs/explanation/targeted-compilation" | "/docs/guide/duplicate-form-submissions" | "/docs/guide/library-integration" | "/docs/guide/low-level-apis" | "/docs/guide/marko-5-interop" | "/docs/guide/publishing-components" | "/docs/guide/styling" | "/docs/introduction/getting-started" | "/docs/introduction/installation" | "/docs/introduction/integrations" | "/docs/introduction/welcome-to-marko" | "/docs/introduction/why-marko" | "/docs/marko-run/file-based-routing" | "/docs/marko-run/getting-started" | "/docs/marko-run/typescript" | "/docs/reference/concise-syntax" | "/docs/reference/core-tag" | "/docs/reference/custom-tag" | "/docs/reference/language" | "/docs/reference/native-tag" | "/docs/reference/reactivity" | "/docs/reference/template" | "/docs/reference/typescript" | "/docs/tutorial/components-and-reactivity" | "/docs/tutorial/fundamentals" | "/playground"];
489501
export type Context = Run.MultiRouteContext<Route> & Marko.Global;
490502
export type Handler = Run.HandlerLike<Route>;
491503
/** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */

public/assets/logo-dark.png

81.3 KB
Loading

public/assets/logo-dark.svg

Lines changed: 26 additions & 0 deletions
Loading

public/assets/logo-light.png

80.9 KB
Loading

public/assets/logo-light.svg

Lines changed: 26 additions & 0 deletions
Loading
File renamed without changes.

public/assets/logomark-black.png

67.5 KB
Loading

public/assets/logomark-black.svg

Lines changed: 3 additions & 0 deletions
Loading

public/assets/logomark-white.png

71 KB
Loading

public/assets/logomark-white.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)